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

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