123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.App.TopicComment
- {
-
-
-
- public class TopicCommentInRequest
- {
-
-
-
- public int TopicId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public int Pid { get; set; }
- }
- }
|