aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Devices
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2021-07-13 19:30:11 -0400
committerPatrick Barron <barronpm@gmail.com>2021-07-13 19:30:11 -0400
commit60ce0c9fa9a3df50a8a7a08629bcedbe3724aee3 (patch)
tree2479e6066757e974ed806c5846e86eb13d973130 /MediaBrowser.Controller/Devices
parent06d682c29679d904bc1b21aa493bb9ed29bda265 (diff)
Add dto for device options
Diffstat (limited to 'MediaBrowser.Controller/Devices')
-rw-r--r--MediaBrowser.Controller/Devices/IDeviceManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Devices/IDeviceManager.cs b/MediaBrowser.Controller/Devices/IDeviceManager.cs
index 6ff4422d2..7e696c3b3 100644
--- a/MediaBrowser.Controller/Devices/IDeviceManager.cs
+++ b/MediaBrowser.Controller/Devices/IDeviceManager.cs
@@ -70,7 +70,7 @@ namespace MediaBrowser.Controller.Devices
/// </summary>
bool CanAccessDevice(User user, string deviceId);
- Task UpdateDeviceOptions(string deviceId, DeviceOptions options);
+ Task UpdateDeviceOptions(string deviceId, string deviceName);
Task<DeviceOptions> GetDeviceOptions(string deviceId);
}