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

        MusicAlbum = 1,

        PhotoAlbum = 2
    }
}