12345678910111213141516171819202122232425262728 |
- namespace GxPress.Request.Comment
- {
-
-
-
- public class CommentUpdateRequest
- {
-
-
-
-
- public int CommentId { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
-
- public int UserId { get; set; }
-
-
-
-
- public decimal Score { get; set; }
- }
- }
|