1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.GroupChatUser
- {
-
-
-
- public class GroupChatUserInRequest
- {
-
-
-
- public int GroupChatId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public bool IsDisturb { get; set; }
-
-
-
- public bool IsTop { get; set; }
-
-
-
- public string GroupChartImId { get; set; }
- }
- }
|