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