Files
Microsoft.SelfService.Porta…/Events/Interfaces/IEventHandlerInterface.cs
2026-04-15 15:02:32 +02:00

11 lines
324 B
C#

using Microsoft.SelfService.Portal.Core.API.Models;
namespace Microsoft.SelfService.Portal.Core.API.Events.Interfaces
{
public interface IEventHandlerInterface
{
ICollection<EventModel> GetEvents(string Class, string Method);
void FireEvent(string Class, string Method, Guid parameters);
}
}