src: renames projects
This commit is contained in:
@@ -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; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user