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; }
        }

    }

}