using System; using System.Collections.Generic; using PropertyChanged; namespace bdGrupoSanchoToro.db; [AddINotifyPropertyChangedInterface] public partial class enumeraciones { public int idEnumeracion { get; set; } public int idGrupoEnumeracion { get; set; } public string? Codigo { get; set; } 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 int? Orden { get; set; } public bool Oculto { get; set; } public string? ValorAlfabetico3 { get; set; } public string? ValorAlfabetico4 { get; set; } public string? ValorAlfabeticoLargo { get; set; } public double? ValorNumerico3 { get; set; } public double? ValorNumerico4 { get; set; } public DateTime? FechaBaja { get; set; } public DateTime? Fecha1 { get; set; } public DateTime? Fecha2 { get; set; } public virtual ICollection detallesfacturas { get; set; } = new List(); public virtual ICollection detallesfacturasrecibidas { get; set; } = new List(); public virtual ICollection documentospresupuestos { get; set; } = new List(); public virtual ICollection entidades { get; set; } = new List(); public virtual ICollection facturasrecibidas { get; set; } = new List(); public virtual ICollection ficheros { get; set; } = new List(); public virtual gruposenumeraciones idGrupoEnumeracionNavigation { get; set; } = null!; public virtual ICollection plantillas { get; set; } = new List(); public virtual ICollection procesosidSubtipoNavigation { get; set; } = new List(); public virtual ICollection procesosidTipoNavigation { get; set; } = new List(); public virtual ICollection usuarios { get; set; } = new List(); }