TFS_ANTIGUO/PrendarioDavivienda/SlnDavivienda/ULA.Davivienda.PrendarioModel/Prendario/MotivoRechazo.cs

21 lines
578 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.MotivoRechazo")]
public partial class MotivoRechazo
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdRechazo { get; set; }
[StringLength(50)]
public string Descripcion { get; set; }
public bool? Estado { get; set; }
}
}