af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
54 lines
979 B
C#
54 lines
979 B
C#
// <copyright file="CollectionTypeOptions.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable SA1300 // Lowercase required for backwards compat.
|
|
|
|
namespace MediaBrowser.Model.Entities;
|
|
|
|
/// <summary>
|
|
/// The collection type options.
|
|
/// </summary>
|
|
public enum CollectionTypeOptions
|
|
{
|
|
/// <summary>
|
|
/// Movies.
|
|
/// </summary>
|
|
movies = 0,
|
|
|
|
/// <summary>
|
|
/// TV Shows.
|
|
/// </summary>
|
|
tvshows = 1,
|
|
|
|
/// <summary>
|
|
/// Music.
|
|
/// </summary>
|
|
music = 2,
|
|
|
|
/// <summary>
|
|
/// Music Videos.
|
|
/// </summary>
|
|
musicvideos = 3,
|
|
|
|
/// <summary>
|
|
/// Home Videos (and Photos).
|
|
/// </summary>
|
|
homevideos = 4,
|
|
|
|
/// <summary>
|
|
/// Box Sets.
|
|
/// </summary>
|
|
boxsets = 5,
|
|
|
|
/// <summary>
|
|
/// Books.
|
|
/// </summary>
|
|
books = 6,
|
|
|
|
/// <summary>
|
|
/// Mixed Movies and TV Shows.
|
|
/// </summary>
|
|
mixed = 7,
|
|
}
|