namespace Admin.Core.Service.Admin.Api.Output
{
    public class ApiListOutput
    {
        /// 
        /// 接口Id
        /// 
        public long Id { get; set; }
        /// 
        /// 接口父级
        /// 
		public long? ParentId { get; set; }
        /// 
        /// 接口命名
        /// 
        public string Name { get; set; }
        /// 
        /// 接口名称
        /// 
        public string Label { get; set; }
        /// 
        /// 接口地址
        /// 
        public string Path { get; set; }
        /// 
        /// 接口提交方法
        /// 
        public string HttpMethods { get; set; }
        /// 
        /// 说明
        /// 
        public string Description { get; set; }
        /// 
        /// 启用
        /// 
        public bool Enabled { get; set; }
    }
}