aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Channels/ChannelFolderType.cs
blob: c456af69a769e72cf47b679de7502e3caa4a6fb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace MediaBrowser.Model.Channels
{
    public enum ChannelFolderType
    {
        Container = 0,

        MusicAlbum = 1,

        PhotoAlbum = 2,

        MusicArtist = 3
    }
}