PlaystateRequest.cs 446 B

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