jellyfin/MediaBrowser.Model/Sync/SyncOptions.cs

17 lines
398 B
C#
Raw Normal View History

2014-12-14 22:16:23 -07:00

namespace MediaBrowser.Model.Sync
{
2015-01-16 21:29:53 -07:00
public class SyncOptions
2014-12-14 22:16:23 -07:00
{
2015-01-16 21:29:53 -07:00
public string TemporaryPath { get; set; }
2015-04-05 08:01:57 -07:00
public long UploadSpeedLimitBytes { get; set; }
2015-04-09 10:30:18 -07:00
public int TranscodingCpuCoreLimit { get; set; }
public bool EnableFullSpeedTranscoding { get; set; }
public SyncOptions()
{
TranscodingCpuCoreLimit = 1;
}
2014-12-14 22:16:23 -07:00
}
}