blob: 64dd948bf7dc6e40e2f602cce9fa817c083ccfc7 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#pragma warning disable CS1591
#pragma warning disable SA1600
namespace MediaBrowser.Model.Session
{
/// <summary>
/// Enum PlaystateCommand.
/// </summary>
public enum PlaystateCommand
{
/// <summary>
/// The stop.
/// </summary>
Stop,
/// <summary>
/// The pause.
/// </summary>
Pause,
/// <summary>
/// The unpause.
/// </summary>
Unpause,
/// <summary>
/// The next track.
/// </summary>
NextTrack,
/// <summary>
/// The previous track.
/// </summary>
PreviousTrack,
/// <summary>
/// The seek.
/// </summary>
Seek,
/// <summary>
/// The rewind.
/// </summary>
Rewind,
/// <summary>
/// The fast forward.
/// </summary>
FastForward,
PlayPause
}
}
|