aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/SyncplayAccess.cs
blob: d891a8167a2c70930130615cf4c1121f68111bd9 (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.Configuration
{
    /// <summary>
    /// Enum SyncPlayAccess.
    /// </summary>
    public enum SyncPlayAccess
    {
        /// <summary>
        /// User can create groups and join them.
        /// </summary>
        CreateAndJoinGroups,

        /// <summary>
        /// User can only join already existing groups.
        /// </summary>
        JoinGroups,

        /// <summary>
        /// SyncPlay is disabled for the user.
        /// </summary>
        None
    }
}