Bot Event

This commit is contained in:
2022-07-30 18:22:49 +02:00
parent bfcca7132c
commit c0d469eac6
18 changed files with 2884 additions and 190 deletions

View File

@@ -0,0 +1,12 @@
using LaDOSE.Entity.BotEvent;
namespace LaDOSE.Business.Interface
{
public interface IBotEventService : IBaseService<BotEvent>
{
BotEvent GetLastEvent();
bool CreateEvent(string EventName);
bool SetResult(string discordId, string name, bool present);
}
}