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