2015-02-05 21:14:08 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2014-07-22 01:29:06 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Sync
|
|
|
|
|
{
|
|
|
|
|
public interface ICloudSyncProvider
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
string Name { get; }
|
2015-02-05 21:14:08 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the synchronize targets.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>IEnumerable<SyncTarget>.</returns>
|
|
|
|
|
IEnumerable<SyncAccount> GetSyncAccounts();
|
2014-07-22 01:29:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|