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