using System.Collections.Generic;
namespace MediaBrowser.Controller.Sync
{
public interface ICloudSyncProvider
{
///
/// Gets the name.
///
/// The name.
string Name { get; }
///
/// Gets the synchronize targets.
///
/// IEnumerable<SyncTarget>.
IEnumerable GetSyncAccounts();
}
}