using System; using System.Collections.Generic; namespace AvaloniaApplication5.Models; public partial class Logintable { public int Id { 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; } = null!; public virtual User? User { get; set; } }