blob: 040affa144a051afe88fa0b160f7d98d5df05afd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
namespace MediaBrowser.Model.Session
{
/// <summary>
/// A request to change the playstate of a session.
/// </summary>
public class PlaystateRequest
{
/// <summary>
/// Gets or sets the playstate command.
/// </summary>
public PlaystateCommand Command { get; set; }
/// <summary>
/// Gets or sets the seek position in ticks.
/// </summary>
public long? SeekPositionTicks { get; set; }
/// <summary>
/// Gets or sets the controlling user identifier.
/// </summary>
/// <value>The controlling user identifier.</value>
public string? ControllingUserId { get; set; }
}
}
|