using System; using System.Collections.Generic; namespace bdHerramientaCACOA.db; public partial class enumeraciones { public int idEnumeracion { get; set; } public int? idGrupoEnumeracion { get; set; } public string Codigo { get; set; } = null!; public string Descripcion { get; set; } = null!; public string? ValorAlfabetico1 { get; set; } public string? ValorAlfabetico2 { get; set; } public double? ValorNumerico1 { get; set; } public double? ValorNumerico2 { get; set; } public string? ValorAlfabetico3 { get; set; } public string? ValorAlfabetico4 { get; set; } public string? ValorAlfabeticoLargo { get; set; } public DateTime? Fecha1 { get; set; } public DateTime? Fecha2 { get; set; } public int? Orden { get; set; } public bool Oculto { get; set; } public virtual ICollection conveniocolectivo { get; set; } = new List(); public virtual ICollection factorescorreccion { get; set; } = new List(); public virtual ICollection ficheros { get; set; } = new List(); public virtual gruposenumeraciones? idGrupoEnumeracionNavigation { get; set; } public virtual ICollection simulaciones { get; set; } = new List(); public virtual ICollection tipologias { get; set; } = new List(); public virtual ICollection tipoproyectos { get; set; } = new List(); }