123456789101112131415161718192021222324252627282930313233343536 |
- 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;}
- }
- }
|