mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 08:45:23 +03:00
added cloud sync model objects
This commit is contained in:
26
MediaBrowser.Server.Implementations/Sync/AppSyncProvider.cs
Normal file
26
MediaBrowser.Server.Implementations/Sync/AppSyncProvider.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using MediaBrowser.Controller.Sync;
|
||||
using MediaBrowser.Model.Dlna;
|
||||
using MediaBrowser.Model.Sync;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Server.Implementations.Sync
|
||||
{
|
||||
public class AppSyncProvider : ISyncProvider
|
||||
{
|
||||
public IEnumerable<SyncTarget> GetSyncTargets()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public DeviceProfile GetDeviceProfile(SyncTarget target)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public string Name
|
||||
{
|
||||
get { return "App Sync"; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user