22 lines
596 B
C#
22 lines
596 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("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; }
|
||
|
|
}
|
||
|
|
}
|