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