using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.Sync;
namespace MediaBrowser.Server.Implementations.Sync
{
public interface IHasSyncProfile
{
///
/// Gets the device profile.
///
/// The target.
/// DeviceProfile.
DeviceProfile GetDeviceProfile(SyncTarget target);
}
}