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

25 lines
686 B
C#

namespace ZelWiki.Engine.Function
{
public class PrototypeParameter
{
/// <summary>
///
/// </summary>
public PrototypeParameter()
{
Type = string.Empty;
Name = string.Empty;
DefaultValue = string.Empty;
IsRequired = false;
IsInfinite = false;
AllowedValues = new();
}
public string Type { get; set; }
public string Name { get; set; }
public string DefaultValue { get; set; }
public bool IsRequired { get; set; }
public bool IsInfinite { get; set; }
public List<string> AllowedValues { get; set; }
}
}