jellyfin/MediaBrowser.Model/LiveTv/ChannelType.cs

19 lines
303 B
C#

namespace MediaBrowser.Model.LiveTv
{
/// <summary>
/// Enum ChannelType.
/// </summary>
public enum ChannelType
{
/// <summary>
/// The TV.
/// </summary>
TV,
/// <summary>
/// The radio.
/// </summary>
Radio
}
}