aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv/ChannelType.cs
blob: 8808aa6d2c6b4021dabac316dff3e7b29df2e3fb (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
    }
}