jellyfin/MediaBrowser.Model/LiveTv/ChannelType.cs

19 lines
303 B
C#
Raw Normal View History

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