123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.App.Note
- {
-
-
-
- public class NoteAnalyzeRequest
- {
-
-
-
- public int NoteId { get; set; }
-
-
-
- public int NoteCommentId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public int NoteAnalyzeType { get; set; }
- }
- }
|