jellyfin/MediaBrowser.Controller/Channels/ChannelItemType.cs

9 lines
132 B
C#
Raw Normal View History

2014-05-12 01:02:28 +02:00
namespace MediaBrowser.Controller.Channels
{
public enum ChannelItemType
{
Media = 0,
Folder = 1
2014-05-12 01:02:28 +02:00
}
}