using System; using System.Collections.Generic; namespace AvaloniaHomeTry.Models; public partial class UsersTable { public int Id { get; set; } public string Login { get; set; } = null!; public string Password { get; set; } = null!; public string? Surname { get; set; } public string? Firstname { get; set; } public string? Patronymic { get; set; } public DateTime? Dataofbirth { get; set; } public int? IdGender { get; set; } public int? IdRole { get; set; } public byte[]? Image { get; set; } public virtual Gender? GenderNavigation { get; set; } public virtual RolesTable? RoleNavigation { get; set; } }