1
0
mirror of synced 2024-11-24 06:20:12 +01:00
GC-local-server-rewrite/Application/Interfaces/IEventManagerService.cs

12 lines
211 B
C#
Raw Normal View History

using Domain.Models;
namespace Application.Interfaces;
public interface IEventManagerService
{
public void InitializeEvents();
public bool UseEvents();
public IEnumerable<Event> GetEvents();
}