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. /// /// The device information. /// DeviceProfile. DeviceProfile GetProfile(DeviceIdentification deviceInfo); } }