aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncOptions.cs
blob: 7f0c17b37318b6e9ca45730867f856efd175f41c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
        }
    }
}