aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/SyncPlay/GroupStateType.cs
blob: 7aa454f928977af9151b8a6e5bf66fe2633a11ef (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
namespace MediaBrowser.Model.SyncPlay
{
    /// <summary>
    /// Enum GroupState.
    /// </summary>
    public enum GroupStateType
    {
        /// <summary>
        /// The group is in idle state. No media is playing.
        /// </summary>
        Idle = 0,

        /// <summary>
        /// The group is in wating state. Playback is paused. Will start playing when users are ready.
        /// </summary>
        Waiting = 1,

        /// <summary>
        /// The group is in paused state. Playback is paused. Will resume on play command.
        /// </summary>
        Paused = 2,

        /// <summary>
        /// The group is in playing state. Playback is advancing.
        /// </summary>
        Playing = 3
    }
}