1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using GxPress.Entity;
- namespace GxPress.Result.GroupChatUser
- {
-
-
-
- public class GroupChatUserByGroupChatIdResultList
- {
-
-
-
- public GroupChat GroupChat { get; set; }
-
-
-
- public IEnumerable<GroupChatUserByGroupChatIdResult> Item { get; set; }
-
-
-
- public bool IsAdmin { get; set; }
-
-
-
- public bool IsUser { get; set; }
-
-
-
- public bool IsTop { get; set; }
-
-
-
- public bool IsDisturb { get; set; }
- }
-
-
-
- public class GroupChatUserByGroupChatIdResult
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int GroupChatId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public string UserName { get; set; }
-
-
-
- public bool IsDisturb { get; set; }
-
-
-
- public bool IsTop { get; set; }
-
-
-
- public string ImId { get; set; }
-
-
-
- public string AvatarUrl { get; set; }
-
-
-
- public string GroupChatImId { get; set; }
- }
- }
|