123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- using System;
- using System.Collections.Generic;
- using GxPress.Entity;
- using GxPress.Entity.Article;
- namespace GxPress.Request.Article
- {
-
-
-
- public class ArticleEditRequest
- {
-
-
-
- public int Id { get; set; }
-
-
-
- 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 ArticleContent ArticleContent { 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; }
- }
- }
|