Files
ravenqbi/AyaNovaQBI/UserType.cs
2022-07-09 04:17:38 +00:00

15 lines
270 B
C#

namespace AyaNovaQBI
{
/// <summary>
/// AyaNova User types
/// </summary>
public enum UserType : int
{
Service = 1,
NotService = 2,
Customer = 3,
HeadOffice = 4,
ServiceContractor = 5
}
}