123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.App.TopicAnalyze
- {
-
-
-
- public class TopicAnalyzeRequest
- {
-
-
-
- public int TopicId { get; set; }
-
-
-
- public int TopicCommentId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public int TopicAnalyzeType { get; set; }
- }
- }
|