1
0
Files
mineplex-crepe/Website/LOC.Website.Common/Models/IServerAdministrator.cs

15 lines
399 B
C#
Raw Normal View History

2021-08-19 16:35:32 +07:00
namespace LOC.Website.Common.Models
{
using System.Collections.Generic;
using Core.Model.GameServer;
public interface IServerAdministrator
{
void Started(Server server);
void Stopped(Server server);
void UpdateServerStatus(ServerHistory serverHistory);
ServerUpdate GetServerUpdates(int serverId);
List<string> GetFilteredWords();
}
}