18 lines
528 B
C#
18 lines
528 B
C#
namespace ULA.Davivienda.PrendarioModel.Prendario
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Catalogos.RiesgoCambiarioDeudor")]
|
|
public partial class RiesgoCambiarioDeudor
|
|
{
|
|
[Key]
|
|
public int IdRiesgoCambiarioDeudor { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string DescripcionRiesgoCambiarioDeudor { get; set; }
|
|
}
|
|
}
|