using System; using System.Collections.Generic; using PropertyChanged; namespace bdAsegasa.db; [AddINotifyPropertyChangedInterface] public partial class ficheros { public int idFichero { get; set; } public string? Descripcion { get; set; } public DateTime? Fecha { get; set; } public int? idTipo { get; set; } public string? Observaciones { get; set; } public byte[]? Fichero { get; set; } public string? NombreFichero { get; set; } public int? idAplicacion { get; set; } public virtual ICollection correos { get; set; } = new List(); public virtual ICollection documentospolizasagrario { get; set; } = new List(); public virtual ICollection documentospolizassg { get; set; } = new List(); public virtual ICollection documentosvarios { get; set; } = new List(); public virtual ICollection expedientesagentes { get; set; } = new List(); public virtual ICollection ficherosadjuntos { get; set; } = new List(); public virtual ICollection gestionesrecibos { get; set; } = new List(); public virtual ICollection gestionessiniestros { get; set; } = new List(); public virtual ICollection gestionesvarias { get; set; } = new List(); public virtual enumeraciones? idTipoNavigation { get; set; } public virtual ICollection informescontables { get; set; } = new List(); public virtual ICollection liquidacionesagentes { get; set; } = new List(); public virtual ICollection notificaciones { get; set; } = new List(); public virtual ICollection pagosliquidacionescias { get; set; } = new List(); public virtual ICollection plantillas { get; set; } = new List(); public virtual ICollection polizassg { get; set; } = new List(); public virtual ICollection procesos { get; set; } = new List(); public virtual ICollection remesas { get; set; } = new List(); public virtual ICollection tiposgestionsiniestros { get; set; } = new List(); }