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