using Newtonsoft.Json; using System.Collections.Generic; namespace Admin.Core.Repository.Admin.View.Output { public class ViewDataOutput { /// /// 租户Id /// public long? TenantId { get; set; } /// /// 视图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 bool Enabled { get; set; } /// /// 说明 /// public string Description { get; set; } public List Childs { get; set; } } }