jellyfin-server/Emby.Server.Implementations/Sync/IHasSyncQuality.cs

32 lines
1.1 KiB
C#
Raw Normal View History

2015-03-15 19:10:27 +00:00
using MediaBrowser.Model.Sync;
2015-03-12 04:47:16 +00:00
using System.Collections.Generic;
2015-02-28 13:42:47 +00:00
2016-11-03 22:34:16 +00:00
namespace Emby.Server.Implementations.Sync
2015-02-28 13:42:47 +00:00
{
2015-03-12 04:47:16 +00:00
public interface IHasSyncQuality
2015-02-28 13:42:47 +00:00
{
/// <summary>
/// Gets the device profile.
/// </summary>
/// <param name="target">The target.</param>
2015-03-15 01:42:09 +00:00
/// <param name="profile">The profile.</param>
2015-03-12 04:55:06 +00:00
/// <param name="quality">The quality.</param>
2015-02-28 13:42:47 +00:00
/// <returns>DeviceProfile.</returns>
2015-03-15 19:10:27 +00:00
SyncJobOptions GetSyncJobOptions(SyncTarget target, string profile, string quality);
2015-03-12 04:55:06 +00:00
2015-03-12 04:47:16 +00:00
/// <summary>
/// Gets the quality options.
/// </summary>
/// <param name="target">The target.</param>
/// <returns>IEnumerable&lt;SyncQualityOption&gt;.</returns>
IEnumerable<SyncQualityOption> GetQualityOptions(SyncTarget target);
2015-03-15 01:42:09 +00:00
/// <summary>
/// Gets the profile options.
/// </summary>
/// <param name="target">The target.</param>
/// <returns>IEnumerable&lt;SyncQualityOption&gt;.</returns>
2015-03-15 04:17:35 +00:00
IEnumerable<SyncProfileOption> GetProfileOptions(SyncTarget target);
2015-02-28 13:42:47 +00:00
}
}