ensure that demoted clients are logged out from the webfront

This commit is contained in:
RaidMax
2019-10-07 17:35:37 -05:00
parent 88af032736
commit a7872aaffd
5 changed files with 101 additions and 3 deletions

View File

@ -5,6 +5,7 @@ using SharedLibraryCore.Configuration;
using System.Reflection;
using SharedLibraryCore.Database.Models;
using System.Threading;
using static SharedLibraryCore.GameEvent;
namespace SharedLibraryCore.Interfaces
{
@ -43,5 +44,6 @@ namespace SharedLibraryCore.Interfaces
string ExternalIPAddress { get; }
CancellationToken CancellationToken { get; }
bool IsRestartRequested { get; }
OnServerEventEventHandler OnServerEvent { get; set; }
}
}