28 lines
860 B
C#
28 lines
860 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.DeclaraRenta")]
|
|
public partial class DeclaraRenta
|
|
{
|
|
public DeclaraRenta()
|
|
{
|
|
InformacionLaboralCliente = new HashSet<InformacionLaboralCliente>();
|
|
}
|
|
|
|
[Key]
|
|
public int IdDeclaraRenta { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string DescripcionDeclaraRenta { get; set; }
|
|
|
|
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<InformacionLaboralCliente> InformacionLaboralCliente { get; set; }
|
|
}
|
|
}
|