using MediaBrowser.Server.Mono;
namespace MediaBrowser.ServerApplication.Native
{
///
/// Class NativeApp
///
public static class NativeApp
{
///
/// Shutdowns this instance.
///
public static void Shutdown()
{
MainClass.Shutdown ();
}
///
/// Restarts this instance.
///
public static void Restart()
{
MainClass.Restart ();
}
}
}