aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv/ChannelType.cs
blob: 56221ab49dd8fa783b0d1255ecf6d7a90e6955f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace MediaBrowser.Model.LiveTv
{
    /// <summary>
    /// Enum ChannelType
    /// </summary>
    public enum ChannelType
    {
        /// <summary>
        /// The TV
        /// </summary>
        TV,

        /// <summary>
        /// The radio
        /// </summary>
        Radio
    }
}