TFS_ANTIGUO/SIGPC/wcfSigdd/AyAEL/TRA/requisitoEL.cs

52 lines
1.1 KiB
C#
Raw Permalink Normal View History

using System.Collections.Generic;
using System.Runtime.Serialization;
namespace AyAEL.TRA
{
public class requisitoEL
{
[DataMember]
public int PKREQUISITO { get; set; }
[DataMember]
public string DESCRIPCIONREQUISITO { get; set; }
[DataMember]
public bool PRORROGA { get; set; }
[DataMember]
public bool REVISION { get; set; }
[DataMember]
public bool POSEEDOR { get; set; }
[DataMember]
public bool SEGREGACION { get; set; }
[DataMember]
public bool DERECHOS { get; set; }
[DataMember]
public bool AUTORIZADOLEGAL { get; set; }
[DataMember]
public int FKNATURALEZAINMUEBLE { get; set; }
[DataMember]
public int FKTIPOPROPIETARIO { get; set; }
[DataMember]
public int FKTIPOINSPECCION { get; set; }
}
[DataContract]
public class RequisitosList : InfoSalida
{
public RequisitosList()
{
this.datos = new List<requisitoEL>();
}
[DataMember]
public List<requisitoEL> datos { get; set; }
}
}