12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System.Collections.Generic;
- namespace GxPress.Request.App.Topic
- {
-
-
-
- public class TopicUpdateRequest
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string Title { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public string HtmlContent { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
-
- public int FolderId { get; set; }
-
-
-
-
- public List<int> TopicAddresseeUserIds { get; set; }
-
-
-
- public TopicUpdateRequest()
- {
- TopicAddresseeUserIds = new List<int>();
- }
- }
- }
|