using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WGShare.Domain.DTOs.User
{
public class UserOutputDTO
{
public string Id { get; set; }
///
/// 用户名称
///
public string UserName { get; set; }
///
/// 账号
///
public string Account { get; set; }
public string RoleId { get; set; }
public string RoleName { get; set; }
///
/// 是否管理员
///
public bool IsManager { get; set; }
///
/// 是否关闭麦克风
///
public bool EnableMicr { get; set; }
///
/// 是否关闭摄像头
///
public bool EnableCamera { get; set; }
///
/// 是否在线
///
public bool IsOnline { get; set; }
///
/// 共享屏幕ID
///
public string ScreenShareId { get; set; }
}
}