src: renames projects

This commit is contained in:
2026-07-20 07:51:36 +02:00
parent 1655a47608
commit 746774ac99
39 changed files with 0 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
namespace ReverseLlama.Protocol;
public sealed class TunnelMessage
{
public string Type { get; set; } = "";
public string RequestId { get; set; } = "";
public string? Method { get; set; }
public string? PathAndQuery { get; set; }
public bool HasBody { get; set; }
public List<HeaderPair> Headers { get; set; } = [];
public int? StatusCode { get; set; }
public string? ReasonPhrase { get; set; }
public byte[]? Body { get; set; }
public List<string> Models { get; set; } = [];
public List<string> ActiveModels { get; set; } = [];
public string? Command { get; set; }
public string? Model { get; set; }
public string? PayloadJson { get; set; }
public string? Error { get; set; }
}