ConsultationResult.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Vinno.vCloud.Common.Client.Managers.Interfaces;
  5. using Vinno.vCloud.Protocol.Infrastructures;
  6. namespace Vinno.vCloud.Client.Proxy.Interfaces
  7. {
  8. public class ConsultationResult
  9. {
  10. public string RoomId { get; set; }
  11. /// <summary>
  12. /// Live Protocol
  13. /// </summary>
  14. public LiveProtocol LiveProtocol { get; set; }
  15. /// <summary>
  16. /// State
  17. /// </summary>
  18. public LiveStates State { get; set; }
  19. /// <summary>
  20. /// Integer room from server for TRTC
  21. /// </summary>
  22. public int IntegerRoomId { get; set; }
  23. /// <summary>
  24. /// Gets or sets the app id
  25. /// </summary>
  26. public int AppId { get; set; }
  27. public IReadOnlyList<LiveTerminalInfo> TerminalInfos { get; set; }
  28. public List<MeetingMemberInfo> MeetingMemberInfos { get; set; }
  29. public ConsultationResult(LiveStates state = LiveStates.OK)
  30. {
  31. State = state;
  32. }
  33. }
  34. }