Files
pgsql-jellyfin/MediaBrowser.Model/LiveTv/ChannelType.cs
T

23 lines
444 B
C#

// <copyright file="ChannelType.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
namespace MediaBrowser.Model.LiveTv
{
/// <summary>
/// Enum ChannelType.
/// </summary>
public enum ChannelType
{
/// <summary>
/// The TV.
/// </summary>
TV,
/// <summary>
/// The radio.
/// </summary>
Radio
}
}