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