NBloodServerSupervisor/WebInterface/Services/IStateService.cs

14 lines
285 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace WebInterface.Services
{
2020-01-27 14:48:53 +01:00
public interface IStateService
{
ListServersResponse ListServers(string host);
2020-01-27 14:48:53 +01:00
GetStatisticsResponse GetStatistics();
}
}