Files
SanchoToro/bdGrupoSanchoToro/db/correos.cs
2026-01-23 12:45:41 +01:00

64 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.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 int? idEntidad { get; set; }
public string? MensajeError { get; set; }
public int? idUsuario { get; set; }
public virtual ICollection<ficherosadjuntos> ficherosadjuntos { get; set; } = new List<ficherosadjuntos>();
public virtual entidades? idEntidadNavigation { get; set; }
public virtual ficheros? idFicheroAdjuntoNavigation { get; set; }
public virtual usuarios? idUsuarioNavigation { get; set; }
public virtual cuentascorreo? idcuentaNavigation { get; set; }
}