2019-01-13 20:01:16 +00:00
|
|
|
using System.Collections.Generic;
|
2019-01-13 19:25:32 +00:00
|
|
|
using MediaBrowser.Model.Sync;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Sync
|
|
|
|
{
|
|
|
|
public interface ISyncProvider
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the name.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name.</value>
|
|
|
|
string Name { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the synchronize targets.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="userId">The user identifier.</param>
|
|
|
|
/// <returns>IEnumerable<SyncTarget>.</returns>
|
|
|
|
List<SyncTarget> GetSyncTargets(string userId);
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets all synchronize targets.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>IEnumerable<SyncTarget>.</returns>
|
|
|
|
List<SyncTarget> GetAllSyncTargets();
|
|
|
|
}
|
|
|
|
}
|