mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-28 08:22:51 +01:00
10 lines
213 B
C#
10 lines
213 B
C#
using MediaBrowser.Common;
|
|
using MediaBrowser.Model.System;
|
|
|
|
namespace MediaBrowser.Controller
|
|
{
|
|
public interface IServerApplicationHost : IApplicationHost
|
|
{
|
|
SystemInfo GetSystemInfo();
|
|
}
|
|
}
|