new_demo/Models/Employee.cs

20 lines
397 B
C#
Raw Permalink Normal View History

2025-02-11 13:24:30 +00:00
using System;
using System.Collections.Generic;
namespace demo_hard.Models;
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; }
}