jellyfin/MediaBrowser.Controller/Sync/ICloudSyncProvider.cs

20 lines
473 B
C#
Raw Normal View History

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&lt;SyncTarget&gt;.</returns>
IEnumerable<SyncAccount> GetSyncAccounts();
2014-07-22 01:29:06 +00:00
}
}