1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- namespace GxPress.Request.Comment
- {
-
-
-
- public class CommentInRequest
- {
-
-
-
- public int ArticleId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public int Pid { get; set; }
-
-
-
-
- public int TypeValue { get; set; }
-
-
-
-
- public decimal Score { get; set; }
-
-
-
- public string HtmlContent { get; set; }
-
-
-
- public string JsonContent { get; set; }
- }
- }
|