Mineplex2018-withcommit/Website/LOC.Website.Common/Models/IServerAdministrator.cs
Jonathan Williams 3fb52c5c71 Initial Commit
2013-08-27 08:14:08 -07:00

15 lines
399 B
C#

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();
}
}