aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/SyncPlay/GroupRepeatMode.cs
blob: 4895e57b7f939bc1eb1b31a43f27e63e6cc1a4e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace MediaBrowser.Model.SyncPlay
{
    /// <summary>
    /// Enum GroupRepeatMode.
    /// </summary>
    public enum GroupRepeatMode
    {
        /// <summary>
        /// Repeat one item only.
        /// </summary>
        RepeatOne = 0,

        /// <summary>
        /// Cycle the playlist.
        /// </summary>
        RepeatAll = 1,

        /// <summary>
        /// Do not repeat.
        /// </summary>
        RepeatNone = 2
    }
}