Files
ravenqbi/AyaNovaQBI/UserType.cs
2022-06-20 23:24:10 +00:00

21 lines
393 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AyaNovaQBI
{
/// <summary>
/// AyaNova User types
/// </summary>
public enum UserType : int
{
Service = 1,
NotService = 2,
Customer = 3,
HeadOffice = 4,
ServiceContractor = 5
}
}