15 lines
298 B
C#
15 lines
298 B
C#
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;
|
|
}
|
|
}
|
|
}
|