17 lines
291 B
C#
17 lines
291 B
C#
using System;
|
|
|
|
namespace AyAEL.AGP
|
|
{
|
|
public class ObjetivoEspecificoEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
|
|
public int Numero { get; set; }
|
|
|
|
public bool Cumplido { get; set; }
|
|
|
|
public int Proyecto { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|