Files
jellyfin-jellyfin-1/MediaBrowser.Model/LiveTv/ChannelType.cs
2020-06-16 10:37:52 +12:00

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
}
}