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

23 lines
586 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.Secuencias")]
public partial class Secuencias
{
[Key]
[StringLength(10)]
public string IdTipoSecuencia { get; set; }
public int Secuencia { get; set; }
[StringLength(100)]
public string Descripcion { get; set; }
public bool Estado { get; set; }
}
}