123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.ArticleAnalyze
- {
-
-
-
- public class ArticleAnalyzeRequest
- {
-
-
-
- public int ArticleId { get; set; }
-
-
-
- public int CommentId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public int ArticleAnalyzeType { get; set; }
-
-
-
-
- public int TypeValue { get; set; }
- }
- }
|