diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-26 16:14:47 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-26 16:14:47 -0400 |
| commit | 0cfc20ac0899d83f2bed2af140bee20fc4b32a78 (patch) | |
| tree | 5e8b24c240ea0b8ded12d899e96bb49c3592f1f3 /MediaBrowser.Controller/Dlna/IDlnaManager.cs | |
| parent | 6a5b64bcb4764eb9cf68fd61960f0f5bb558ecd4 (diff) | |
stub out profile edit page
Diffstat (limited to 'MediaBrowser.Controller/Dlna/IDlnaManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Dlna/IDlnaManager.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Dlna/IDlnaManager.cs b/MediaBrowser.Controller/Dlna/IDlnaManager.cs index eb4b65e14..521d17e01 100644 --- a/MediaBrowser.Controller/Dlna/IDlnaManager.cs +++ b/MediaBrowser.Controller/Dlna/IDlnaManager.cs @@ -25,6 +25,18 @@ namespace MediaBrowser.Controller.Dlna DeviceProfile GetDefaultProfile(); /// <summary> + /// Creates the profile. + /// </summary> + /// <param name="profile">The profile.</param> + void CreateProfile(DeviceProfile profile); + + /// <summary> + /// Updates the profile. + /// </summary> + /// <param name="profile">The profile.</param> + void UpdateProfile(DeviceProfile profile); + + /// <summary> /// Deletes the profile. /// </summary> /// <param name="id">The identifier.</param> |
