mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
27 lines
613 B
C#
27 lines
613 B
C#
|
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"; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|