Files
ZelWiki/ZelWiki.Engine.Function/PrototypeSet.cs
2025-02-23 18:47:21 +08:00

21 lines
541 B
C#

namespace ZelWiki.Engine.Function
{
public class PrototypeSet
{
/// <summary>
///
/// </summary>
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; }
}
}