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

22 lines
596 B
C#
Raw Permalink Normal View History

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("Aprobacion.ComentariosEvaluacionCaso")]
public partial class ComentariosEvaluacionCaso
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdSolicitud { get; set; }
public string Comentario { get; set; }
[StringLength(150)]
public string Step { get; set; }
}
}