using Apewer; using System; using System.Collections.Generic; using System.Web; namespace Apewer.Web { /// [Serializable] public class ApiApplication : ApiEntry { private Dictionary _functions = new Dictionary(); private bool _independent = false; private string _module = null; /// public Dictionary Functions { get { return _functions; } } /// 指示此 Application 不依赖 ApiInvoker,将忽略 Function。 public bool Independent { get { return _independent; } set { _independent = value; } } /// public string Module { get { return _module; } set { _module = value; } } } }