using System.Collections.Generic; namespace GxPress.Result.Article { /// /// 获取 /// public class ArticleGroupResult { /// /// 自增ID /// /// public int Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 系统默认 /// /// public bool IsSystemDefault { get; set; } /// /// 是否中间页面 /// /// public bool IsMiddleLable { get; set; } /// /// 中间页面ID /// /// public int MiddleLableId { get; set; } /// /// 样式 /// /// public string StyleCss { get; set; } /// /// /// /// public Dictionary StyleCssDictionary { get; set; } } }