9 lines
132 B
C#
9 lines
132 B
C#
|
namespace MediaBrowser.Controller.Channels
|
|||
|
{
|
|||
|
public enum ChannelItemType
|
|||
|
{
|
|||
|
Media = 0,
|
|||
|
|
|||
|
Folder = 1
|
|||
|
}
|
|||
|
}
|