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