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

32 lines
1.1 KiB
C#
Raw Normal View History

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