Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/IBotEventService.cs
2022-07-30 18:22:49 +02:00

12 lines
295 B
C#

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