/
kochkatech
/
Queue
Обзор
Документация
Войти
/
kochkatech
/
Queue
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
src/Queue.Core/Models/Employee.cs
18 строк
458 B
kochkareal
init: Начальная структура проекта и панель администратора
24 июл 2026, 21:42
24 июл 2026, 21:42
cd5152a
Код
Авторство
О чём код?
namespace Queue.Core.Models; public enum EmployeeRole { Administrator, Operator } public class Employee { public int Id { get; set; } public string FullName { get; set; } = string.Empty; public string Login { get; set; } = string.Empty; public string PasswordHash { get; set; } = string.Empty; public EmployeeRole Role { get; set; } public int? CurrentWindowId { get; set; } public bool IsActive { get; set; } = true; }