aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/UnratedItem.cs
blob: e1d1a363dbafd1efa5aadd7098801ec7da2f9ad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma warning disable CS1591

namespace MediaBrowser.Model.Configuration
{
    public enum UnratedItem
    {
        Movie,
        Trailer,
        Series,
        Music,
        Book,
        LiveTvChannel,
        LiveTvProgram,
        ChannelContent,
        Other
    }
}