16 lines
280 B
C#
16 lines
280 B
C#
using System;
|
|
|
|
namespace AyAEL.PLE
|
|
{
|
|
public class ObjetivoEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
public int Numero { get; set; }
|
|
|
|
public string Meta { get; set; }
|
|
|
|
public int Perspectiva { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|