diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-14 21:42:09 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-14 21:42:09 -0400 |
| commit | 99c991f001d99d441c3b3188a3bf5affb2e4c14b (patch) | |
| tree | 1448f66329d9feb7af89ac91544482c018756cbb /MediaBrowser.Controller/Devices/IDeviceManager.cs | |
| parent | cde1df51ec093b1d35fd5fa5e89c528ff079a887 (diff) | |
save appVersion with device record
Diffstat (limited to 'MediaBrowser.Controller/Devices/IDeviceManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Devices/IDeviceManager.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Devices/IDeviceManager.cs b/MediaBrowser.Controller/Devices/IDeviceManager.cs index 78eebd994..2846bcfc6 100644 --- a/MediaBrowser.Controller/Devices/IDeviceManager.cs +++ b/MediaBrowser.Controller/Devices/IDeviceManager.cs @@ -25,9 +25,10 @@ namespace MediaBrowser.Controller.Devices /// <param name="reportedId">The reported identifier.</param> /// <param name="name">The name.</param> /// <param name="appName">Name of the application.</param> + /// <param name="appVersion">The application version.</param> /// <param name="usedByUserId">The used by user identifier.</param> /// <returns>Task.</returns> - Task<DeviceInfo> RegisterDevice(string reportedId, string name, string appName, string usedByUserId); + Task<DeviceInfo> RegisterDevice(string reportedId, string name, string appName, string appVersion, string usedByUserId); /// <summary> /// Saves the capabilities. |
