31 lines
868 B
C#
31 lines
868 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.ParamDeduccionFormalizaPrendaTimbre")]
|
|
public partial class ParamDeduccionFormalizaPrendaTimbre
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdParamTimbre { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Descripcion { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string TipoCalculo { get; set; }
|
|
|
|
[StringLength(5)]
|
|
public string Nemonico { get; set; }
|
|
|
|
public decimal? Monto { get; set; }
|
|
|
|
public decimal? Porcentaje { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
}
|
|
}
|