TFS_ANTIGUO/SInCathay/ULA.Cathay.CreditoModel/Credito/HistoricoCaratula.cs

36 lines
893 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.HistoricoCaratula")]
public partial class HistoricoCaratula
{
[Key]
public int IdHistoricoCaratula { get; set; }
public int IdSolicitud { get; set; }
[Required]
[StringLength(50)]
public string NombreTabla { get; set; }
[Required]
public string Descripcion { get; set; }
public DateTime Fecha { get; set; }
[Required]
[StringLength(50)]
public string Etapa { get; set; }
[StringLength(50)]
public string Usuario { get; set; }
[StringLength(256)]
public string Name { get; set; }
}
}