Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/IBotEventService.cs

12 lines
295 B
C#
Raw Normal View History

2022-07-30 18:22:49 +02:00
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);
}
}