using System; using System.Collections.Generic; namespace TestApplication.Context; public partial class Gender1 { public char Code { get; set; } public string? Name { get; set; } public virtual ICollection Clients { get; set; } = new List(); }