added cloud sync model objects

This commit is contained in:
Luke Pulverenti
2014-07-21 21:29:06 -04:00
parent ce20066bc0
commit c524f3919e
93 changed files with 1088 additions and 675 deletions

View 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"; }
}
}
}