You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
155 lines
3.1 KiB
155 lines
3.1 KiB
|
|
namespace MediaBrowser.Model.Querying
|
|
{
|
|
/// <summary>
|
|
/// Used to control the data that gets attached to DtoBaseItems
|
|
/// </summary>
|
|
public enum ItemFields
|
|
{
|
|
/// <summary>
|
|
/// The budget
|
|
/// </summary>
|
|
Budget,
|
|
|
|
/// <summary>
|
|
/// The chapters
|
|
/// </summary>
|
|
Chapters,
|
|
|
|
/// <summary>
|
|
/// The critic rating summary
|
|
/// </summary>
|
|
CriticRatingSummary,
|
|
|
|
/// <summary>
|
|
/// The cumulative run time ticks
|
|
/// </summary>
|
|
CumulativeRunTimeTicks,
|
|
|
|
/// <summary>
|
|
/// The custom rating
|
|
/// </summary>
|
|
CustomRating,
|
|
|
|
/// <summary>
|
|
/// The date created of the item
|
|
/// </summary>
|
|
DateCreated,
|
|
|
|
/// <summary>
|
|
/// Item display preferences
|
|
/// </summary>
|
|
DisplayPreferencesId,
|
|
|
|
/// <summary>
|
|
/// Genres
|
|
/// </summary>
|
|
Genres,
|
|
|
|
/// <summary>
|
|
/// The home page URL
|
|
/// </summary>
|
|
HomePageUrl,
|
|
|
|
/// <summary>
|
|
/// Child count, recursive child count, etc
|
|
/// </summary>
|
|
ItemCounts,
|
|
|
|
/// <summary>
|
|
/// The fields that the server supports indexing on
|
|
/// </summary>
|
|
IndexOptions,
|
|
|
|
/// <summary>
|
|
/// The metadata settings
|
|
/// </summary>
|
|
MetadataSettings,
|
|
|
|
/// <summary>
|
|
/// The original run time ticks
|
|
/// </summary>
|
|
OriginalRunTimeTicks,
|
|
|
|
/// <summary>
|
|
/// The item overview
|
|
/// </summary>
|
|
Overview,
|
|
|
|
/// <summary>
|
|
/// The overview HTML
|
|
/// </summary>
|
|
OverviewHtml,
|
|
|
|
/// <summary>
|
|
/// The id of the item's parent
|
|
/// </summary>
|
|
ParentId,
|
|
|
|
/// <summary>
|
|
/// The physical path of the item
|
|
/// </summary>
|
|
Path,
|
|
|
|
/// <summary>
|
|
/// The list of people for the item
|
|
/// </summary>
|
|
People,
|
|
|
|
/// <summary>
|
|
/// The production locations
|
|
/// </summary>
|
|
ProductionLocations,
|
|
|
|
/// <summary>
|
|
/// Imdb, tmdb, etc
|
|
/// </summary>
|
|
ProviderIds,
|
|
|
|
/// <summary>
|
|
/// The aspect ratio of the primary image
|
|
/// </summary>
|
|
PrimaryImageAspectRatio,
|
|
|
|
/// <summary>
|
|
/// The revenue
|
|
/// </summary>
|
|
Revenue,
|
|
|
|
/// <summary>
|
|
/// The soundtrack ids
|
|
/// </summary>
|
|
SoundtrackIds,
|
|
|
|
/// <summary>
|
|
/// The sort name of the item
|
|
/// </summary>
|
|
SortName,
|
|
|
|
/// <summary>
|
|
/// The studios of the item
|
|
/// </summary>
|
|
Studios,
|
|
|
|
/// <summary>
|
|
/// The taglines of the item
|
|
/// </summary>
|
|
Taglines,
|
|
|
|
/// <summary>
|
|
/// The tags
|
|
/// </summary>
|
|
Tags,
|
|
|
|
/// <summary>
|
|
/// The trailer url of the item
|
|
/// </summary>
|
|
RemoteTrailers,
|
|
|
|
/// <summary>
|
|
/// The media streams
|
|
/// </summary>
|
|
MediaStreams
|
|
}
|
|
}
|