You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
580 B

using System;
using System.Reflection;
namespace Apewer.Web
{
/// <summary></summary>
[Serializable]
public class ApiFunction : ApiEntry
{
private MethodInfo _method = null;
private bool _returnable = false;
/// <summary></summary>
public MethodInfo Method
{
get { return _method; }
set { _method = value; }
}
/// <summary></summary>
public bool Returnable
{
get { return _returnable; }
set { _returnable = value; }
}
}
}