2025-02-05 10:11:36 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2025-02-11 13:17:16 +00:00
|
|
|
|
namespace demo_hard.Model;
|
2025-02-05 10:11:36 +00:00
|
|
|
|
|
|
|
|
|
public partial class Employee
|
|
|
|
|
{
|
|
|
|
|
public int EmployeId { get; set; }
|
|
|
|
|
|
|
|
|
|
public int RoleId { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Fio { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
public string EmployeLogin { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
public string EmployePassword { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
public string? EmployePhoto { get; set; }
|
|
|
|
|
}
|