19 lines
356 B
C#
19 lines
356 B
C#
using System;
|
|
|
|
namespace AyAEL.PPP
|
|
{
|
|
public class DistribucionPartidaEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
|
|
public int Anio { get; set; }
|
|
|
|
public decimal Monto { get; set; }
|
|
|
|
public int PartidaPresupuestaria { get; set; }
|
|
|
|
public int Proyecto { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|