namespace ZelWiki.Engine.Function { public class PrototypeSet { /// /// /// public PrototypeSet() { FunctionPrefix = string.Empty; ProperName = string.Empty; FunctionName = string.Empty; Value = new(); } public string FunctionPrefix { get; set; } public string ProperName { get; set; } public string FunctionName { get; set; } public FunctionPrototype Value { get; set; } } }