SendCommand.cs 1.1 KB

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