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
+18
View File
@@ -0,0 +1,18 @@
namespace ReverseLlama.Protocol;
public sealed class HeaderPair
{
public HeaderPair()
{
}
public HeaderPair(string name, string value)
{
Name = name;
Value = value;
}
public string Name { get; set; } = "";
public string Value { get; set; } = "";
}