1234567891011121314151617181920212223242526272829303132333435363738394041 |
- namespace GxPress.Request.ArticleGroup
- {
-
-
-
- public class ArticleGroupAddRequest
- {
-
-
-
- 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; }
- }
- }
|