16 lines
279 B
C#
16 lines
279 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ComputerShopDataModels.Enums
|
|||
|
{
|
|||
|
public enum UserRole
|
|||
|
{
|
|||
|
Неизвестная = -1,
|
|||
|
Исполнитель = 0,
|
|||
|
Поручитель = 1
|
|||
|
}
|
|||
|
}
|