using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; namespace AvaloniaExample.Models; public partial class Login { public int Id { get; set; } [Column("login")] public string Value { get; set; } = null!; public string? Password { get; set; } public string? Role { get; set; } public virtual UsersInfo? UsersInfo { get; set; } }