jellyfin/MediaBrowser.Controller/Channels/ChannelItemType.cs

12 lines
162 B
C#
Raw Normal View History

#pragma warning disable CS1591
namespace MediaBrowser.Controller.Channels
2018-12-27 18:27:57 -05:00
{
public enum ChannelItemType
{
Media = 0,
Folder = 1
}
}