1234567891011121314151617181920212223242526272829303132333435363738 |
- namespace GxPress.Request.GroupChatUser
- {
-
-
-
- public class GroupChatUserUpRequest
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int GroupChatId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public bool IsDisturb { get; set; }
-
-
-
- public bool IsTop { get; set; }
-
-
-
- public string ImId { get; set; }
- }
- }
|