2015-02-28 08:42:47 -05:00
|
|
|
|
using MediaBrowser.Model.Dlna;
|
|
|
|
|
|
using MediaBrowser.Model.Sync;
|
2015-03-12 00:47:16 -04:00
|
|
|
|
using System.Collections.Generic;
|
2015-02-28 08:42:47 -05:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.Sync
|
|
|
|
|
|
{
|
2015-03-12 00:47:16 -04:00
|
|
|
|
public interface IHasSyncQuality
|
2015-02-28 08:42:47 -05:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the device profile.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="target">The target.</param>
|
2015-03-14 21:42:09 -04:00
|
|
|
|
/// <param name="profile">The profile.</param>
|
2015-03-12 00:55:06 -04:00
|
|
|
|
/// <param name="quality">The quality.</param>
|
2015-02-28 08:42:47 -05:00
|
|
|
|
/// <returns>DeviceProfile.</returns>
|
2015-03-14 21:42:09 -04:00
|
|
|
|
DeviceProfile GetDeviceProfile(SyncTarget target, string profile, string quality);
|
2015-03-12 00:55:06 -04:00
|
|
|
|
|
2015-03-12 00:47:16 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the quality options.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="target">The target.</param>
|
|
|
|
|
|
/// <returns>IEnumerable<SyncQualityOption>.</returns>
|
|
|
|
|
|
IEnumerable<SyncQualityOption> GetQualityOptions(SyncTarget target);
|
2015-03-14 21:42:09 -04:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the profile options.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="target">The target.</param>
|
|
|
|
|
|
/// <returns>IEnumerable<SyncQualityOption>.</returns>
|
2015-03-15 00:17:35 -04:00
|
|
|
|
IEnumerable<SyncProfileOption> GetProfileOptions(SyncTarget target);
|
2015-02-28 08:42:47 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|