aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Library/PlayAccess.cs
blob: 22daaf72540f39f576f4c9318d29c1164e45159b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Model.Library
{
    /// <summary>
    /// The play access of an item.
    /// </summary>
    public enum PlayAccess
    {
        /// <summary>
        /// The item can be played.
        /// </summary>
        Full = 0,

        /// <summary>
        /// The item cannot be played.
        /// </summary>
        None = 1
    }
}