sync updates

This commit is contained in:
Luke Pulverenti
2015-02-07 01:02:42 -05:00
parent e6e5d1a794
commit cf0875ef6c
10 changed files with 11 additions and 73 deletions

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using MediaBrowser.Model.Sync;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Sync
{
@@ -13,7 +14,8 @@ namespace MediaBrowser.Controller.Sync
/// <summary>
/// Gets the synchronize targets.
/// </summary>
/// <param name="userId">The user identifier.</param>
/// <returns>IEnumerable&lt;SyncTarget&gt;.</returns>
IEnumerable<SyncAccount> GetSyncAccounts();
IEnumerable<SyncTarget> GetSyncTargets(string userId);
}
}