20 lines
551 B
C#
20 lines
551 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.PeriodoCredito")]
|
|
public partial class PeriodoCredito
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdPeriodoCredito { get; set; }
|
|
|
|
public int? Meses { get; set; }
|
|
|
|
public int? Estado { get; set; }
|
|
}
|
|
}
|