Files
jellyfin-ha-src/MediaBrowser.Controller/Channels/ChannelItemType.cs
T

19 lines
365 B
C#

namespace MediaBrowser.Controller.Channels
{
/// <summary>
/// The type of a channel item.
/// </summary>
public enum ChannelItemType
{
/// <summary>
/// The item is a media item.
/// </summary>
Media = 0,
/// <summary>
/// The item is a folder.
/// </summary>
Folder = 1
}
}