using System; using System.Collections.Generic; namespace QualTask.Models; public partial class User { public int Id { get; set; } public string Fname { get; set; } = null!; public string Lname { get; set; } = null!; public string Login { get; set; } = null!; public string Password { get; set; } = null!; public int Role { get; set; } public virtual Role RoleNavigation { get; set; } = null!; }