29 lines
813 B
C#
29 lines
813 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.ParamDeduccionFormalizaPrenda")]
|
|
public partial class ParamDeduccionFormalizaPrenda
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdParamDeduccion { get; set; }
|
|
|
|
public int? IdTipoDeduccion { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Descripcion { get; set; }
|
|
|
|
public int? IdTipoVehiculo { get; set; }
|
|
|
|
public decimal? Monto { get; set; }
|
|
|
|
public decimal? Porcentaje { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
}
|
|
}
|