jellyfin/MediaBrowser.Model/LiveTv/ChannelType.cs

19 lines
303 B
C#
Raw Normal View History

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