123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Vinno.vCloud.Common.Client.Managers.Interfaces;
- using Vinno.vCloud.Protocol.Infrastructures;
- namespace Vinno.vCloud.Client.Proxy.Interfaces
- {
- public class ConsultationResult
- {
- public string RoomId { get; set; }
- /// <summary>
- /// Live Protocol
- /// </summary>
- public LiveProtocol LiveProtocol { get; set; }
- /// <summary>
- /// State
- /// </summary>
- public LiveStates State { get; set; }
- /// <summary>
- /// Integer room from server for TRTC
- /// </summary>
- public int IntegerRoomId { get; set; }
- /// <summary>
- /// Gets or sets the app id
- /// </summary>
- public int AppId { get; set; }
- public IReadOnlyList<LiveTerminalInfo> TerminalInfos { get; set; }
- public List<MeetingMemberInfo> MeetingMemberInfos { get; set; }
- public ConsultationResult(LiveStates state = LiveStates.OK)
- {
- State = state;
- }
- }
- }
|