32 lines
1 KiB
C#
32 lines
1 KiB
C#
namespace ULA.Cathay.CreditoModel.Credito
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Catalogos.Ley8262")]
|
|
public partial class Ley8262
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public Ley8262()
|
|
{
|
|
MatrizBeneficiarioSBD = new HashSet<MatrizBeneficiarioSBD>();
|
|
}
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdLey8262 { get; set; }
|
|
|
|
[StringLength(300)]
|
|
public string Descripcion { get; set; }
|
|
|
|
public int? Puntaje { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<MatrizBeneficiarioSBD> MatrizBeneficiarioSBD { get; set; }
|
|
}
|
|
}
|