1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System.Collections.Generic;
- namespace GxPress.Result.Article
- {
-
-
-
- public class ArticleGroupResult
- {
-
-
-
-
- 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; }
-
-
-
-
- public int MiddleLableId { get; set; }
-
-
-
-
- public string StyleCss { get; set; }
-
-
-
-
- public Dictionary<string, string> StyleCssDictionary { get; set; }
- }
- }
|