namespace ZelWiki.Engine.Function { public class OrdinalParameter { /// /// /// /// public OrdinalParameter(string value) { Value = value; IsMatched = false; ParameterName = string.Empty; } public string Value { get; set; } /// /// /// public bool IsMatched { get; set; } /// /// /// public string ParameterName { get; set; } public void AssociateWithPrototypeParam(string paramName) { IsMatched = true; ParameterName = paramName; } } }