mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 08:15:28 +03:00
18 lines
447 B
C#
18 lines
447 B
C#
|
|
namespace MediaBrowser.Model.Configuration
|
|||
|
|
{
|
|||
|
|
public class ChannelOptions
|
|||
|
|
{
|
|||
|
|
public int? PreferredStreamingWidth { get; set; }
|
|||
|
|
|
|||
|
|
public string DownloadPath { get; set; }
|
|||
|
|
public int? MaxDownloadAge { get; set; }
|
|||
|
|
|
|||
|
|
public string[] DownloadingChannels { get; set; }
|
|||
|
|
|
|||
|
|
public ChannelOptions()
|
|||
|
|
{
|
|||
|
|
DownloadingChannels = new string[] { };
|
|||
|
|
MaxDownloadAge = 30;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|