This commit is contained in:
2021-01-13 18:43:53 +00:00
parent 9a6889d859
commit 632ef88fc2

View File

@@ -31,6 +31,15 @@ namespace AyaNova.PickList
[FromBody] [FromBody]
public string ListVariant { get; set; } public string ListVariant { get; set; }
public PickListParams()
{
AyaType = AyaType.NoType;
Query = string.Empty;
Inactive = false;
PreselectedIds = new List<long>();
ListVariant = string.Empty;
}
} }
} }