using System; using System.Collections.Generic; using PropertyChanged; namespace bdAsegasa.db; [AddINotifyPropertyChangedInterface] public partial class informescontables { public int idInforme { get; set; } public string? Descripcion { get; set; } public int? idFichero { get; set; } public string Codigo { get; set; } = null!; public virtual ICollection celdasinformescontables { get; set; } = new List(); public virtual ficheros? idFicheroNavigation { get; set; } }