2
0

PlaystateRequest.cs 413 B

123456789101112131415
  1. namespace MediaBrowser.Model.Session
  2. {
  3. public class PlaystateRequest
  4. {
  5. public PlaystateCommand Command { get; set; }
  6. public long? SeekPositionTicks { get; set; }
  7. /// <summary>
  8. /// Gets or sets the controlling user identifier.
  9. /// </summary>
  10. /// <value>The controlling user identifier.</value>
  11. public string ControllingUserId { get; set; }
  12. }
  13. }