1234567891011121314151617181920212223242526272829 |
- namespace GxPress.Request.App.Note
- {
-
-
-
- public class NoteCommentInRequest
- {
-
-
-
- public int NoteId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public int Pid { get; set; }
- }
- }
|