using System; using System.Collections.Generic; namespace AvaloniaApplication1.Models; public partial class User { public int IdUser { get; set; } public string Login { get; set; } = null!; public string Password { get; set; } = null!; public int? IdRole { get; set; } public virtual Role? IdRoleNavigation { get; set; } public virtual Teacher? Teacher { get; set; } }