jellyfin/MediaBrowser.Model/LiveTv/ChannelType.cs

19 lines
300 B
C#
Raw Normal View History

2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.LiveTv
{
/// <summary>
/// Enum ChannelType
/// </summary>
public enum ChannelType
{
/// <summary>
/// The TV
/// </summary>
TV,
/// <summary>
/// The radio
/// </summary>
Radio
}
}