using System; using System.Collections.Generic; using PropertyChanged; namespace bdAsegasa.db; [AddINotifyPropertyChangedInterface] public partial class ficheroscompanias { public int idFichero { get; set; } public DateTime FechaCreacion { get; set; } public DateTime? FechaProcesado { get; set; } public DateTime? FechaError { get; set; } public string? NombreFichero { get; set; } public int Tipo { get; set; } public int? idUsuario { get; set; } public int idCompania { get; set; } public byte[]? Fichero { get; set; } public string? SHA1 { get; set; } public bool ProcesadoSinRecibosCorrectos { get; set; } public string? Observaciones { get; set; } public string? Version { get; set; } public bool ContieneRecibos { get; set; } public bool ContienePolizas { get; set; } public bool ContieneSiniestros { get; set; } public bool ContieneLiquidaciones { get; set; } public virtual ICollection actualizacionessiniestros_eiac { get; set; } = new List(); public virtual companias idCompaniaNavigation { get; set; } = null!; public virtual usuarios? idUsuarioNavigation { get; set; } public virtual ICollection recibos { get; set; } = new List(); public virtual ICollection registrosactualizados { get; set; } = new List(); public virtual ICollection siniestros_eiac { get; set; } = new List(); }