1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.Comment
- {
-
-
-
- public class NoticeCommentInLaudRequest
- {
-
-
-
- public int ArticleId { get; set; }
-
-
-
- public int CommentId { get; set; }
-
-
-
- public int UserId { get; set; }
- }
- }
|