1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.GroupChat
- {
-
-
-
- public class GroupChatInRequest
- {
-
-
-
- public string Name { get; set; }
-
-
-
- public string Introduce { get; set; }
-
-
-
- public string AvatarUrl { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public string GroupChatImId { get; set; }
-
-
-
- public bool IsWords { get; set; }
-
-
-
- public bool IsAdmin { get; set; }
-
-
-
- public List<int> UserIds { get; set; }
-
-
-
-
- public List<Entity.User> Users { get; set; }
-
-
-
-
- public int FolderId { get; set; }
- }
- }
|