我滴个乖乖
This commit is contained in:
14
ZelWiki.Engine.Function/NamedParameter.cs
Normal file
14
ZelWiki.Engine.Function/NamedParameter.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace ZelWiki.Engine.Function
|
||||
{
|
||||
public class NamedParameter
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Value { get; set; }
|
||||
|
||||
public NamedParameter(string name, string value)
|
||||
{
|
||||
Name = name;
|
||||
Value = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user