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