aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Mono/Native/NativeApp.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-24 20:54:51 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-24 20:54:51 -0400
commitfe5a9232c84cea113336005b3c7cbd7fe77a2d80 (patch)
tree9fb1412f4a8ca4303ec276b6ab6e096f98eed58d /MediaBrowser.Server.Mono/Native/NativeApp.cs
parent0ab379e271afe69372806ab0e24a874d3f085456 (diff)
moved a few things for mono
Diffstat (limited to 'MediaBrowser.Server.Mono/Native/NativeApp.cs')
-rw-r--r--MediaBrowser.Server.Mono/Native/NativeApp.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Mono/Native/NativeApp.cs b/MediaBrowser.Server.Mono/Native/NativeApp.cs
new file mode 100644
index 000000000..bb47f6ea4
--- /dev/null
+++ b/MediaBrowser.Server.Mono/Native/NativeApp.cs
@@ -0,0 +1,25 @@
+
+namespace MediaBrowser.ServerApplication.Native
+{
+ /// <summary>
+ /// Class NativeApp
+ /// </summary>
+ public static class NativeApp
+ {
+ /// <summary>
+ /// Shutdowns this instance.
+ /// </summary>
+ public static void Shutdown()
+ {
+
+ }
+
+ /// <summary>
+ /// Restarts this instance.
+ /// </summary>
+ public static void Restart()
+ {
+
+ }
+ }
+}