jellyfin/MediaBrowser.Controller/Channels/ChannelItemType.cs

9 lines
132 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Channels
{
public enum ChannelItemType
{
Media = 0,
Folder = 1
}
}