21 lines
541 B
C#
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; }
|
|
}
|
|
}
|