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; } }