IW4M-Admin/SharedLibraryCore/Interfaces/IEventApi.cs
RaidMax 6d5c368954 Seperated the application back into a seperate project
webfront is just a library now
2018-04-08 13:48:40 -05:00

12 lines
244 B
C#

using SharedLibraryCore.Dtos;
using System.Collections.Generic;
namespace SharedLibraryCore.Interfaces
{
public interface IEventApi
{
void OnServerEvent(object sender, Event E);
Queue<EventInfo> GetEvents();
}
}