Files
jellyfin-jellyfin-1/MediaBrowser.Model/Sync/SyncOptions.cs

17 lines
398 B
C#
Raw Normal View History

2014-12-15 00:16:23 -05:00

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