mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
17 lines
398 B
C#
17 lines
398 B
C#
|
|
namespace MediaBrowser.Model.Sync
|
|
{
|
|
public class SyncOptions
|
|
{
|
|
public string TemporaryPath { get; set; }
|
|
public long UploadSpeedLimitBytes { get; set; }
|
|
public int TranscodingCpuCoreLimit { get; set; }
|
|
public bool EnableFullSpeedTranscoding { get; set; }
|
|
|
|
public SyncOptions()
|
|
{
|
|
TranscodingCpuCoreLimit = 1;
|
|
}
|
|
}
|
|
}
|