jellyfin/MediaBrowser.Model/LiveTv/ChannelType.cs

19 lines
303 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.LiveTv
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Enum ChannelType.
2018-12-28 00:27:57 +01:00
/// </summary>
public enum ChannelType
{
/// <summary>
/// The TV.
2018-12-28 00:27:57 +01:00
/// </summary>
TV,
/// <summary>
2020-02-04 01:49:27 +01:00
/// The radio.
2018-12-28 00:27:57 +01:00
/// </summary>
Radio
}
}