using System; using System.Collections.Generic; namespace ServiceApp.EnityModels; public partial class Gender { public int Code { get; set; } public string? Name { get; set; } public virtual ICollection Clients { get; set; } = new List(); }