ConversationMemberNotification.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Vinno.vCloud.Protocol.Messages.Live;
  5. namespace Vinno.vCloud.Client.Proxy.Interfaces
  6. {
  7. /// <summary>
  8. /// 会诊成员改变通知
  9. /// </summary>
  10. public class ConversationMemberNotification
  11. {
  12. public string OpenId { get; set; }
  13. public MeetingMemberNotification MeetingMemberNotification { get; set; }
  14. }
  15. /// <summary>
  16. /// 会诊挂断通知
  17. /// </summary>
  18. public class HangupConversationMemberNotification
  19. {
  20. public string OpenId { get; set; }
  21. public MeetingHangupNotification MeetingHangupNotification { get; set; }
  22. }
  23. /// <summary>
  24. /// 拒绝会诊通知
  25. /// </summary>
  26. public class RejectConversationNotification
  27. {
  28. public string OpenId { get; set; }
  29. public RejectMeetingNotification RejectMeetingNotification { get; set; }
  30. }
  31. public class AcceptConversationNotification
  32. {
  33. public string OpenId { get; set; }
  34. public AcceptMeetingNotification AcceptMeetingNotification { get; set; }
  35. }
  36. /// <summary>
  37. /// 超时应答改变通知
  38. /// </summary>
  39. public class PendingTimeoutConversationNotification
  40. {
  41. public string OpenId { get; set; }
  42. public ChatPendingMemberTimeoutNotification Notification { get; set; }
  43. }
  44. }