//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
#nullable disable
#pragma warning disable CA1002, CA2227, CS1591
using System.Collections.Generic;
using MediaBrowser.Model.Channels;
namespace MediaBrowser.Controller.Channels
{
public class InternalChannelFeatures
{
public InternalChannelFeatures()
{
MediaTypes = new List();
ContentTypes = new List();
DefaultSortFields = new List();
}
///
/// Gets or sets the media types.
///
/// The media types.
public List MediaTypes { get; set; }
///
/// Gets or sets the content types.
///
/// The content types.
public List ContentTypes { get; set; }
///
/// Gets or sets the maximum number of records the channel allows retrieving at a time.
///
public int? MaxPageSize { get; set; }
///
/// Gets or sets the default sort orders.
///
/// The default sort orders.
public List DefaultSortFields { get; set; }
///
/// Gets or sets a value indicating whether a sort ascending/descending toggle is supported or not.
///
public bool SupportsSortOrderToggle { get; set; }
///
/// Gets or sets the automatic refresh levels.
///
/// The automatic refresh levels.
public int? AutoRefreshLevels { get; set; }
///
/// Gets or sets the daily download limit.
///
/// The daily download limit.
public int? DailyDownloadLimit { get; set; }
///
/// Gets or sets a value indicating whether [supports downloading].
///
/// true if [supports downloading]; otherwise, false.
public bool SupportsContentDownloading { get; set; }
}
}