Mineplex2018-withcommit/Website/LOC.Website.Common/Models/IServerAdministrator.cs

15 lines
399 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02: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();
}
}