11 lines
295 B
C#
11 lines
295 B
C#
namespace MoonlightServers.Daemon.ServerSystem.Abstractions;
|
|
|
|
public interface IInstallStatistics
|
|
{
|
|
public event Func<ServerStatistics, Task>? OnStatisticsReceived;
|
|
|
|
public Task AttachAsync();
|
|
|
|
public Task ClearCacheAsync();
|
|
public Task<ServerStatistics[]> GetCacheAsync();
|
|
} |