using MediaBrowser.Controller.Sync; using MediaBrowser.Model.Querying; using MediaBrowser.Model.Sync; using System; using System.Collections.Generic; using System.Threading.Tasks; namespace MediaBrowser.Server.Implementations.Sync { public class SyncManager : ISyncManager { public Task> CreateJob(SyncJobRequest request) { throw new NotImplementedException(); } public Task CreateSchedule(SyncScheduleRequest request) { throw new NotImplementedException(); } public QueryResult GetJobs(SyncJobQuery query) { throw new NotImplementedException(); } public QueryResult GetSchedules(SyncScheduleQuery query) { throw new NotImplementedException(); } public Task CancelJob(string id) { throw new NotImplementedException(); } public Task CancelSchedule(string id) { throw new NotImplementedException(); } public SyncJob GetJob(string id) { throw new NotImplementedException(); } public SyncSchedule GetSchedule(string id) { throw new NotImplementedException(); } } }