aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/SystemService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-23 15:36:25 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-23 15:36:25 -0400
commit87aee1625da956669bce724177821378f4f3158c (patch)
tree9aff23fb0fd2273e9b1ccb1fd16b2b720e84f1f4 /MediaBrowser.Api/SystemService.cs
parentca37afb3a55b670ca4d5d24355f34e61f997e5a0 (diff)
add new device profiles
Diffstat (limited to 'MediaBrowser.Api/SystemService.cs')
-rw-r--r--MediaBrowser.Api/SystemService.cs11
1 files changed, 4 insertions, 7 deletions
diff --git a/MediaBrowser.Api/SystemService.cs b/MediaBrowser.Api/SystemService.cs
index 9f5f3716e..2f0741434 100644
--- a/MediaBrowser.Api/SystemService.cs
+++ b/MediaBrowser.Api/SystemService.cs
@@ -8,8 +8,7 @@ namespace MediaBrowser.Api
/// <summary>
/// Class GetSystemInfo
/// </summary>
- [Route("/System/Info", "GET")]
- [Api(Description = "Gets information about the server")]
+ [Route("/System/Info", "GET", Summary = "Gets information about the server")]
public class GetSystemInfo : IReturn<SystemInfo>
{
@@ -18,18 +17,16 @@ namespace MediaBrowser.Api
/// <summary>
/// Class RestartApplication
/// </summary>
- [Route("/System/Restart", "POST")]
- [Api(("Restarts the application, if needed"))]
+ [Route("/System/Restart", "POST", Summary = "Restarts the application, if needed")]
public class RestartApplication
{
}
- [Route("/System/Shutdown", "POST")]
- [Api(("Shuts down the application"))]
+ [Route("/System/Shutdown", "POST", Summary = "Shuts down the application")]
public class ShutdownApplication
{
}
-
+
/// <summary>
/// Class SystemInfoService
/// </summary>