mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 19:08:53 -07:00
20 lines
284 B
C#
20 lines
284 B
C#
|
using System;
|
|||
|
|
|||
|
namespace MediaBrowser.Server.Mac
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Class NativeApp
|
|||
|
/// </summary>
|
|||
|
public class NativeApp : BaseMonoApp
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Shutdowns this instance.
|
|||
|
/// </summary>
|
|||
|
public override void Shutdown()
|
|||
|
{
|
|||
|
MainClass.Shutdown();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|