SendCommand.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #nullable disable
  2. namespace MediaBrowser.Model.SyncPlay
  3. {
  4. /// <summary>
  5. /// Class SendCommand.
  6. /// </summary>
  7. public class SendCommand
  8. {
  9. /// <summary>
  10. /// Gets or sets the group identifier.
  11. /// </summary>
  12. /// <value>The group identifier.</value>
  13. public string GroupId { get; set; }
  14. /// <summary>
  15. /// Gets or sets the UTC time when to execute the command.
  16. /// </summary>
  17. /// <value>The UTC time when to execute the command.</value>
  18. public string When { get; set; }
  19. /// <summary>
  20. /// Gets or sets the position ticks.
  21. /// </summary>
  22. /// <value>The position ticks.</value>
  23. public long? PositionTicks { get; set; }
  24. /// <summary>
  25. /// Gets or sets the command.
  26. /// </summary>
  27. /// <value>The command.</value>
  28. public SendCommandType Command { get; set; }
  29. /// <summary>
  30. /// Gets or sets the UTC time when this command has been emitted.
  31. /// </summary>
  32. /// <value>The UTC time when this command has been emitted.</value>
  33. public string EmittedAt { get; set; }
  34. }
  35. }