Files
pgsql-jellyfin/MediaBrowser.Model/Channels/ChannelFolderType.cs
T

24 lines
407 B
C#

// <copyright file="ChannelFolderType.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
#pragma warning disable CS1591
namespace MediaBrowser.Model.Channels
{
public enum ChannelFolderType
{
Container = 0,
MusicAlbum = 1,
PhotoAlbum = 2,
MusicArtist = 3,
Series = 4,
Season = 5
}
}