| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 | namespace MediaBrowser.Model.Querying{    /// <summary>    /// Used to control the data that gets attached to DtoBaseItems    /// </summary>    public enum ItemFields    {        /// <summary>        /// The air time        /// </summary>        AirTime,        /// <summary>        /// The alternate episode numbers        /// </summary>        AlternateEpisodeNumbers,        /// <summary>        /// The awards summary        /// </summary>        AwardSummary,        /// <summary>        /// The budget        /// </summary>        Budget,        /// <summary>        /// The can delete        /// </summary>        CanDelete,        /// <summary>        /// The can download        /// </summary>        CanDownload,        /// <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>        /// The date last media added        /// </summary>        DateLastMediaAdded,        /// <summary>        /// Item display preferences        /// </summary>        DisplayPreferencesId,        /// <summary>        /// The display media type        /// </summary>        DisplayMediaType,        /// <summary>        /// The etag        /// </summary>        Etag,        /// <summary>        /// The external urls        /// </summary>        ExternalUrls,        /// <summary>        /// Genres        /// </summary>        Genres,        /// <summary>        /// The home page URL        /// </summary>        HomePageUrl,        /// <summary>        /// The fields that the server supports indexing on        /// </summary>        IndexOptions,        /// <summary>        /// The item counts        /// </summary>        ItemCounts,        /// <summary>        /// The keywords        /// </summary>        Keywords,        /// <summary>        /// The media source count        /// </summary>        MediaSourceCount,        /// <summary>        /// The media versions        /// </summary>        MediaSources,        /// <summary>        /// The metascore        /// </summary>        Metascore,        /// <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>        /// The production locations        /// </summary>        ProductionLocations,        /// <summary>        /// Imdb, tmdb, etc        /// </summary>        ProviderIds,        /// <summary>        /// The aspect ratio of the primary image        /// </summary>        PrimaryImageAspectRatio,        /// <summary>        /// The original primary image aspect ratio        /// </summary>        OriginalPrimaryImageAspectRatio,                /// <summary>        /// The revenue        /// </summary>        Revenue,        /// <summary>        /// The season name        /// </summary>        SeasonName,        /// <summary>        /// The settings        /// </summary>        Settings,        /// <summary>        /// The short overview        /// </summary>        ShortOverview,        /// <summary>        /// The screenshot image tags        /// </summary>        ScreenshotImageTags,        /// <summary>        /// The series genres        /// </summary>        SeriesGenres,        /// <summary>        /// The series studio        /// </summary>        SeriesStudio,        /// <summary>        /// The sort name of the item        /// </summary>        SortName,        /// <summary>        /// The special episode numbers        /// </summary>        SpecialEpisodeNumbers,        /// <summary>        /// The studios of the item        /// </summary>        Studios,        /// <summary>        /// The synchronize information        /// </summary>        SyncInfo,        /// <summary>        /// The taglines of the item        /// </summary>        Taglines,        /// <summary>        /// The tags        /// </summary>        Tags,        /// <summary>        /// The vote count        /// </summary>        VoteCount,        /// <summary>        /// The TMDB collection name        /// </summary>        TmdbCollectionName,                /// <summary>        /// The trailer url of the item        /// </summary>        RemoteTrailers,        /// <summary>        /// The media streams        /// </summary>        MediaStreams,        /// <summary>        /// The season user data        /// </summary>        SeasonUserData    }}
 |