22 lines
618 B
C#
22 lines
618 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.EstratoSocial")]
|
|
public partial class EstratoSocial
|
|
{
|
|
[Key]
|
|
[StringLength(1)]
|
|
public string IdEstratoSocial { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal? LimiteInferior { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal? LimiteSuperior { get; set; }
|
|
}
|
|
}
|