using System; using System.Collections.Generic; namespace AvaloniaApplication5.Models; public partial class Gender { public int Id { get; set; } public string Gender1 { get; set; } = null!; public virtual ICollection Users { get; set; } = new List(); }