using System.Collections.Generic;
namespace Admin.Core.Repository.Admin.Output
{
    public class ApiDataOutput
    {
        /// 
        /// 租户Id
        /// 
        public long? TenantId { get; set; }
        /// 
        /// 接口Id
        /// 
        public long Id { get; set; }
        /// 
        /// 父级Id
        /// 
        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 int Sort { get; set; }
        /// 
        /// 启用
        /// 
        public bool Enabled { get; set; }
        public List Childs { get; set; }
    }
}