This commit is contained in:
2021-09-09 00:06:16 +00:00
parent 220f185418
commit 4f70082d09
4 changed files with 31 additions and 14 deletions

View File

@@ -32,6 +32,9 @@ namespace AyaNova.PickList
[FromBody]
public string ListVariant { get; set; }
[FromBody]
public string Template { get; set; }
public PickListOptions()
{
AyaType = AyaType.NoType;
@@ -39,6 +42,7 @@ namespace AyaNova.PickList
Inactive = false;
PreselectedIds = new List<long>();
ListVariant = string.Empty;
Template = string.Empty;
}
}
@@ -54,11 +58,15 @@ namespace AyaNova.PickList
[FromBody]
public string ListVariant { get; set; }
[FromBody]
public string Template { get; set; }
public PickListSingleOptions()
{
AyaType = AyaType.NoType;
Id = 0;
ListVariant = string.Empty;
Template = string.Empty;
}
}