15 lines
277 B
C#
15 lines
277 B
C#
namespace Sockeye.Biz
|
|
{
|
|
/// <summary>
|
|
/// Sockeye User types
|
|
/// </summary>
|
|
public enum UserType : int
|
|
{
|
|
Service = 1,
|
|
NotService = 2,
|
|
Customer = 3,
|
|
HeadOffice = 4,
|
|
ServiceContractor = 5
|
|
}
|
|
}//eons
|