21 lines
393 B
C#
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
|
|
}
|
|
}
|