Files
ZelWiki/TightWiki.Engine.Function/NamedParameter.cs
2025-01-22 23:31:03 +08:00

15 lines
300 B
C#

namespace TightWiki.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;
}
}
}