using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.ViewModels.QiYeWeChat
{
///
/// 部门成员列表
///
public class GroupStatus_UserSimplelistView : ResponseBase
{
public List userlist { get; set; }
}
public class GroupStatus_UserSimplelistItem
{
///
/// 成员UserID。对应管理端的账号
///
public string userid { get; set; }
///
/// 成员名称
///
public string name { get; set; }
///
/// 成员所属部门列表
///
public List department { get; set; }
}
///
/// 创建群聊
///
public class GroupStatus_CreateChatView : ResponseBase
{
public string chatid { get; set; }
}
}