jellyfin/MediaBrowser.Model/LiveTv/LiveTvChannelType.cs

20 lines
310 B
C#
Raw Normal View History


namespace MediaBrowser.Model.LiveTv
{
/// <summary>
/// Enum ChannelType
/// </summary>
2014-05-31 17:13:07 +02:00
public enum LiveTvChannelType
{
/// <summary>
/// The TV
/// </summary>
TV,
/// <summary>
/// The radio
/// </summary>
Radio
}
}