123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
-
- namespace MediaBrowser.Model.Dto
- {
- /// <summary>
- /// Used to control the data that gets attached to DtoBaseItems
- /// </summary>
- public enum ItemFields
- {
- /// <summary>
- /// Audio properties
- /// </summary>
- AudioInfo,
- /// <summary>
- /// The chapters
- /// </summary>
- Chapters,
- /// <summary>
- /// The date created of the item
- /// </summary>
- DateCreated,
- /// <summary>
- /// The display media type
- /// </summary>
- DisplayMediaType,
- /// <summary>
- /// Item display preferences
- /// </summary>
- DisplayPreferences,
- /// <summary>
- /// Genres
- /// </summary>
- Genres,
- /// <summary>
- /// Child count, recursive child count, etc
- /// </summary>
- ItemCounts,
- /// <summary>
- /// The fields that the server supports indexing on
- /// </summary>
- IndexOptions,
- /// <summary>
- /// The item overview
- /// </summary>
- Overview,
- /// <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>
- /// Imdb, tmdb, etc
- /// </summary>
- ProviderIds,
- /// <summary>
- /// The aspect ratio of the primary image
- /// </summary>
- PrimaryImageAspectRatio,
- /// <summary>
- /// AirDays, status, SeriesName, etc
- /// </summary>
- SeriesInfo,
- /// <summary>
- /// The sort name of the item
- /// </summary>
- SortName,
- /// <summary>
- /// The fields that the server supports sorting on
- /// </summary>
- SortOptions,
- /// <summary>
- /// The studios of the item
- /// </summary>
- Studios,
- /// <summary>
- /// The taglines of the item
- /// </summary>
- Taglines,
- /// <summary>
- /// The trailer url of the item
- /// </summary>
- TrailerUrls,
- /// <summary>
- /// The user data of the item
- /// </summary>
- UserData,
- /// <summary>
- /// The media streams
- /// </summary>
- MediaStreams
- }
- }
|