blob: b7e9daf4966a12144d7681854b4ca995cb732225 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.Sync;
namespace MediaBrowser.Server.Implementations.Sync
{
public interface IHasSyncProfile
{
/// <summary>
/// Gets the device profile.
/// </summary>
/// <param name="target">The target.</param>
/// <returns>DeviceProfile.</returns>
DeviceProfile GetDeviceProfile(SyncTarget target);
}
}
|