Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Channels/ChannelItemType.cs

9 lines
132 B
C#
Raw Normal View History

2014-05-11 19:02:28 -04:00
namespace MediaBrowser.Controller.Channels
{
public enum ChannelItemType
{
Media = 0,
Folder = 1
2014-05-11 19:02:28 -04:00
}
}