Files
Asegasa.NET/bdAsegasa/db/correos.cs

66 lines
1.9 KiB
C#

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> documentospolizassg { get; set; } = new List<documentospolizassg>();
public virtual ICollection<ficherosadjuntos> ficherosadjuntos { get; set; } = new List<ficherosadjuntos>();
public virtual ICollection<gestionesrecibos> gestionesrecibos { get; set; } = new List<gestionesrecibos>();
public virtual ICollection<gestionesvarias> gestionesvarias { get; set; } = new List<gestionesvarias>();
public virtual ficheros? idFicheroAdjuntoNavigation { get; set; }
public virtual cuentascorreo? idcuentaNavigation { get; set; }
public virtual ICollection<liquidacionesagentes> liquidacionesagentes { get; set; } = new List<liquidacionesagentes>();
public virtual ICollection<pagosliquidacionescias> pagosliquidacionescias { get; set; } = new List<pagosliquidacionescias>();
}