mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 13:58:29 +01:00
added modular configuration
This commit is contained in:
18
MediaBrowser.Model/Configuration/ChannelOptions.cs
Normal file
18
MediaBrowser.Model/Configuration/ChannelOptions.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user