15 lines
295 B
C#
15 lines
295 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace HardwareShopDataModels.Enums
|
||
{
|
||
public enum UserRole
|
||
{
|
||
Неизвестен = 0,
|
||
Работник = 1,
|
||
Кладовщик = 2,
|
||
}
|
||
} |