26 lines
749 B
C#
26 lines
749 B
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.RecipienteEmailSolicitud")]
|
|
public partial class RecipienteEmailSolicitud
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdRecipienteEmailSolicitud { get; set; }
|
|
|
|
public int IdEmailSolicitud { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Email { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Nombre { get; set; }
|
|
|
|
public virtual EmailSolicitud EmailSolicitud { get; set; }
|
|
}
|
|
}
|