This commit is contained in:
2021-02-18 20:30:49 +00:00
parent 8786dd22df
commit bc0c255ee3
5 changed files with 74 additions and 5 deletions

View File

@@ -42,4 +42,24 @@ namespace AyaNova.PickList
}
}
public sealed class PickListSingleOptions
{
[FromBody]
public AyaType AyaType { get; set; }
[FromBody]
public long Id { get; set; }
[FromBody]
public string ListVariant { get; set; }
public PickListSingleOptions()
{
AyaType = AyaType.NoType;
Id = 0;
ListVariant = string.Empty;
}
}
}