using System; using System.Collections.Generic; using System.Text; using GxPress.EnumConst; namespace GxPress.Result.App.AdminVerify { /// /// 验证搜索 /// public class AdminVerifySearchResult { /// /// /// public int Id { get; set; } /// /// 类型 1 单聊 2群聊 3小组 /// public GroupTypeConst VerifyType { get; set; } /// /// 处理状态 0 未处理 1 同意 2 拒绝 /// public AdminVerifyTypeConst DisposeType { get; set; } /// /// 群主ID /// public int AdminId { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 来源ID /// public int SourceId { get; set; } /// /// 姓名 /// public string Name { get; set; } /// /// 头像地址 /// public string AvatarUrl { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 来源状态 1申请 2邀请 /// public int SourceType { get; set; } /// /// 来源名称 /// public string SourceName { get; set; } /// /// 是否删除 /// public string IsDelete { get; set; } /// /// 是否可操作 /// public bool IsOperate { get; set; } /// /// 添加时间 /// public DateTime? CreatedDate { get; set; } /// /// 是否可访问 /// public bool IsVisit { get; set; } } }