55 lines
2.1 KiB
C#
55 lines
2.1 KiB
C#
namespace ULA.Cathay.CreditoModel.Credito
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Global.EmailSolicitud")]
|
|
public partial class EmailSolicitud
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public EmailSolicitud()
|
|
{
|
|
AdjuntoEmailSolicitud = new HashSet<AdjuntoEmailSolicitud>();
|
|
BitacoraSeguimientoCorreo = new HashSet<BitacoraSeguimientoCorreo>();
|
|
RecipienteEmailSolicitud = new HashSet<RecipienteEmailSolicitud>();
|
|
}
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdEmailSolicitud { get; set; }
|
|
|
|
public int? IdSolicitud { get; set; }
|
|
|
|
public int? IdControlVisitas { get; set; }
|
|
|
|
public int? IdEtapa { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string Subject { get; set; }
|
|
|
|
public string Body { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string NombrePlantilla { get; set; }
|
|
|
|
public string DocumentosAdjuntos { get; set; }
|
|
|
|
public virtual Etapas Etapas { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<AdjuntoEmailSolicitud> AdjuntoEmailSolicitud { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<BitacoraSeguimientoCorreo> BitacoraSeguimientoCorreo { get; set; }
|
|
|
|
public virtual ControlVisitas ControlVisitas { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<RecipienteEmailSolicitud> RecipienteEmailSolicitud { get; set; }
|
|
}
|
|
}
|