using System; using System.Collections.Generic; using PropertyChanged; namespace bdAsegasa.db; [AddINotifyPropertyChangedInterface] public partial class correos { public int idcorreo { get; set; } public int? idcuenta { get; set; } public string? Remitente { get; set; } public string? Destinatario { get; set; } public string? Copia { get; set; } public string? CopiaOculta { get; set; } public string? DireccionRespuesta { get; set; } public string? Asunto { get; set; } public string? Cuerpo { get; set; } public string? RutaFicheroAdjunto { get; set; } public int? idFicheroAdjunto { get; set; } public DateTime? FechaCreacion { get; set; } public DateTime? FechaEnvio { get; set; } public DateTime? FechaUltimoIntento { get; set; } public DateTime? FechaAnulacion { get; set; } public DateTime? FechaAvisoError { get; set; } public int? idAplicacion { get; set; } public string? CodigoAplicacion { get; set; } public bool Reciclable { get; set; } public string? DescripcionError { get; set; } public virtual ICollection documentospolizassg { get; set; } = new List(); public virtual ICollection ficherosadjuntos { get; set; } = new List(); public virtual ICollection gestionesrecibos { get; set; } = new List(); public virtual ICollection gestionesvarias { get; set; } = new List(); public virtual ficheros? idFicheroAdjuntoNavigation { get; set; } public virtual cuentascorreo? idcuentaNavigation { get; set; } public virtual ICollection liquidacionesagentes { get; set; } = new List(); public virtual ICollection pagosliquidacionescias { get; set; } = new List(); }