12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using GxPress.EnumConst;
- namespace GxPress.Request.App.Topic
- {
-
-
-
- public class TopicInRequest
- {
-
-
-
- public string Title { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public string HtmlContent { get; set; }
-
-
-
- public int ReadCount { get; set; }
-
-
-
- public List<int> TopicAddresseeUserIds { get; set; }
-
-
-
- public int GroupId { get; set; }
-
-
-
- public SourceTypeConst SourceType { get; set; }
-
-
-
- public int SourceId { get; set; }
-
-
-
- public int FolderId { get; set; }
-
-
-
- public TopicInRequest()
- {
- TopicAddresseeUserIds = new List<int>();
- }
- }
- }
|