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

32 lines
836 B
C#
Raw 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("Catalogos.Garantia")]
public partial class Garantia
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdGarantia { get; set; }
[StringLength(50)]
public string Descripcion { get; set; }
public bool? Estado { get; set; }
[StringLength(100)]
public string UsuarioCreador { get; set; }
public DateTime? FechaCreacion { get; set; }
[StringLength(100)]
public string UsuarioModificado { get; set; }
public DateTime? FechaModificacion { get; set; }
}
}