using ManageLiteAV;
namespace Vinno.FIS.TRTCClient
{
internal class TRTCDeviceInfo
{
///
/// Device Id
///
public string DeviceId { get; set; }
///
/// Device Type :Mic ,Camera,Speaker
///
public TRTCDeviceType DeviceType { get; set; }
///
/// Device State
///
public TRTCDeviceState DeviceState { get; set; }
public TRTCDeviceInfo(string deviceId, TRTCDeviceType deviceType, TRTCDeviceState deviceState)
{
DeviceId = deviceId;
DeviceType = deviceType;
DeviceState = deviceState;
}
}
}