PlaystateRequest.cs 476 B

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