123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.NoticeAnalyze
- {
-
-
-
- public class NoticeAnalyzeRequest
- {
-
-
-
- public int NoticeId { get; set; }
-
-
-
- public int NoticeCommentId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public int NoticeAnalyzeType { get; set; }
- }
- }
|