12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.NoticeComment
- {
-
-
-
- public class NoticeCommentInRequest
- {
-
-
-
- public int NoticeId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public int Pid { get; set; }
- }
- }
|