This commit is contained in:
2022-06-20 23:24:10 +00:00
parent 7ced9e377c
commit 0526dab167
5 changed files with 182 additions and 16 deletions

20
AyaNovaQBI/UserType.cs Normal file
View File

@@ -0,0 +1,20 @@
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
}
}