123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.App.Topic
- {
-
-
-
- public class TopicGroupInRequest
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public string Name { get; set; }
- }
-
-
-
- public class TopicGroupDeRequest
- {
-
-
-
- public List<int> Ids { get; set; }
- }
- }
|