using System.Collections.Generic;
namespace MediaBrowser.Controller.Dlna
{
public interface IDlnaManager
{
///
/// Gets the dlna profiles.
///
/// IEnumerable{DlnaProfile}.
IEnumerable GetProfiles();
///
/// Gets the default profile.
///
/// DlnaProfile.
DeviceProfile GetDefaultProfile();
///
/// Gets the profile.
///
/// Name of the friendly.
/// Name of the model.
/// The model number.
/// The manufacturer.
/// DlnaProfile.
DeviceProfile GetProfile(string friendlyName, string modelName, string modelNumber, string manufacturer);
}
}