using System; using System.Collections.Generic; namespace demko6.Models; public partial class Employee { public int Id { get; set; } public int RoleId { get; set; } public string Name { get; set; } = null!; public string Login { get; set; } = null!; public string Password { get; set; } = null!; public DateTime? LastLogin { get; set; } public virtual ICollection EmployeeServices { get; set; } = new List(); public virtual ICollection Orders { get; set; } = new List(); public virtual Role Role { get; set; } = null!; }