mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
18 lines
228 B
C#
18 lines
228 B
C#
namespace MediaBrowser.Model.Channels
|
|
{
|
|
public enum ChannelFolderType
|
|
{
|
|
Container = 0,
|
|
|
|
MusicAlbum = 1,
|
|
|
|
PhotoAlbum = 2,
|
|
|
|
MusicArtist = 3,
|
|
|
|
Series = 4,
|
|
|
|
Season = 5
|
|
}
|
|
}
|