123123
This commit is contained in:
@@ -2,11 +2,24 @@
|
||||
{
|
||||
public class PrototypeParameter
|
||||
{
|
||||
public string Type { get; set; } = string.Empty;
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public string DefaultValue { get; set; } = string.Empty;
|
||||
public bool IsRequired { get; set; } = false;
|
||||
public bool IsInfinite { get; set; } = false;
|
||||
public List<string> AllowedValues { get; set; } = new();
|
||||
/// <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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user