BlagodatBogDat/blagodat/Models/Employe.cs

24 lines
493 B
C#
Raw Permalink Normal View History

2025-03-10 21:15:26 +00:00
using System;
using System.Collections.Generic;
namespace blagodat.Models;
public partial class Employe
{
public int Id { get; set; }
public string Fio { get; set; } = null!;
public string Login { get; set; } = null!;
public string Password { get; set; } = null!;
public string LastEntry { get; set; } = null!;
public string InputType { get; set; } = null!;
public int? Function { get; set; }
public virtual Role? FunctionNavigation { get; set; }
}