jellyfin/MediaBrowser.Model/Sync/SyncOptions.cs

17 lines
398 B
C#
Raw Normal View History

2014-12-15 06:16:23 +01:00

namespace MediaBrowser.Model.Sync
{
2015-01-17 05:29:53 +01:00
public class SyncOptions
2014-12-15 06:16:23 +01:00
{
2015-01-17 05:29:53 +01:00
public string TemporaryPath { get; set; }
2015-04-05 17:01:57 +02:00
public long UploadSpeedLimitBytes { get; set; }
2015-04-09 19:30:18 +02:00
public int TranscodingCpuCoreLimit { get; set; }
public bool EnableFullSpeedTranscoding { get; set; }
public SyncOptions()
{
TranscodingCpuCoreLimit = 1;
}
2014-12-15 06:16:23 +01:00
}
}