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

25 lines
689 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("Catalogos.MantenimientoCatalogos")]
public partial class MantenimientoCatalogos
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdMantenimientoCatalogos { get; set; }
[Required]
[StringLength(50)]
public string Catalogo { get; set; }
[StringLength(150)]
public string Vista { get; set; }
public bool Estado { get; set; }
}
}