GroupInfoView.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #nullable disable
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Model.SyncPlay
  4. {
  5. /// <summary>
  6. /// Class GroupInfoView.
  7. /// </summary>
  8. public class GroupInfoView
  9. {
  10. /// <summary>
  11. /// Gets or sets the group identifier.
  12. /// </summary>
  13. /// <value>The group identifier.</value>
  14. public string GroupId { get; set; }
  15. /// <summary>
  16. /// Gets or sets the playing item id.
  17. /// </summary>
  18. /// <value>The playing item id.</value>
  19. public string PlayingItemId { get; set; }
  20. /// <summary>
  21. /// Gets or sets the playing item name.
  22. /// </summary>
  23. /// <value>The playing item name.</value>
  24. public string PlayingItemName { get; set; }
  25. /// <summary>
  26. /// Gets or sets the position ticks.
  27. /// </summary>
  28. /// <value>The position ticks.</value>
  29. public long PositionTicks { get; set; }
  30. /// <summary>
  31. /// Gets or sets the participants.
  32. /// </summary>
  33. /// <value>The participants.</value>
  34. public IReadOnlyList<string> Participants { get; set; }
  35. }
  36. }