1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using System;
- using System.Collections.Generic;
- using GxPress.Entity;
- namespace GxPress.Request.Article
- {
-
-
-
- public class ArticleAddRequest
- {
-
-
-
- public string Title { get; set; }
-
-
-
- public int GroupId { get; set; }
-
-
-
- public IEnumerable<string> ImageUrls { get; set; }
-
-
-
- public string Summary { get; set; }
-
-
-
- public string Author { get; set; }
-
-
-
- public string Source { get; set; }
-
-
-
- public IEnumerable<Block> Blocks { get; set; }
-
-
-
- public bool IsChecked { get; set; }
-
-
-
- public DateTime AddDate { get; set; }
-
-
-
- public int Sort { get; set; }
-
-
-
- public bool IsTop { get; set; }
-
-
-
-
- public List<int> ArticleLabelIds { get; set; }
- }
- }
|