aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ChannelItemType.cs
blob: 2608cb4c88078508b7dcd30cab24c9d6d7cf481e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Controller.Channels
{
    /// <summary>
    /// The type of a channel item.
    /// </summary>
    public enum ChannelItemType
    {
        /// <summary>
        /// The item is a media item.
        /// </summary>
        Media = 0,

        /// <summary>
        /// The item is a folder.
        /// </summary>
        Folder = 1
    }
}