namespace MediaBrowser.Model.Querying
{
    /// 
    /// Used to control the data that gets attached to DtoBaseItems
    /// 
    public enum ItemFields
    {
        /// 
        /// Audio properties
        /// 
        AudioInfo,
        /// 
        /// The budget
        /// 
        Budget,
        /// 
        /// The chapters
        /// 
        Chapters,
        /// 
        /// The critic rating summary
        /// 
        CriticRatingSummary,
        /// 
        /// The date created of the item
        /// 
        DateCreated,
        /// 
        /// The display media type
        /// 
        DisplayMediaType,
        /// 
        /// Item display preferences
        /// 
        DisplayPreferencesId,
        /// 
        /// The end date
        /// 
        EndDate,
        /// 
        /// Genres
        /// 
        Genres,
        /// 
        /// The home page URL
        /// 
        HomePageUrl,
        /// 
        /// Child count, recursive child count, etc
        /// 
        ItemCounts,
        /// 
        /// The fields that the server supports indexing on
        /// 
        IndexOptions,
        /// 
        /// The item overview
        /// 
        Overview,
        /// 
        /// The overview HTML
        /// 
        OverviewHtml,
        
        /// 
        /// The id of the item's parent
        /// 
        ParentId,
        /// 
        /// The physical path of the item
        /// 
        Path,
        /// 
        /// The list of people for the item
        /// 
        People,
        /// 
        /// The production locations
        /// 
        ProductionLocations,
        /// 
        /// Imdb, tmdb, etc
        /// 
        ProviderIds,
        /// 
        /// The aspect ratio of the primary image
        /// 
        PrimaryImageAspectRatio,
        /// 
        /// The revenue
        /// 
        Revenue,
        
        /// 
        /// AirDays, status, SeriesName, etc
        /// 
        SeriesInfo,
        /// 
        /// The sort name of the item
        /// 
        SortName,
        /// 
        /// The studios of the item
        /// 
        Studios,
        /// 
        /// The taglines of the item
        /// 
        Taglines,
        /// 
        /// The tags
        /// 
        Tags,
        
        /// 
        /// The trailer url of the item
        /// 
        TrailerUrls,
        /// 
        /// The user data of the item
        /// 
        UserData,
        /// 
        /// The media streams
        /// 
        MediaStreams
    }
}