using System; using System.Collections.Generic; namespace AvaloniaApplicationTestNew.Models; public partial class Role { public int IdRole { get; set; } public string RoleName { get; set; } = null!; public virtual ICollection Logineds { get; set; } = new List(); }