using System;
using System.Collections.Generic;
namespace SharedLibraryCore.Interfaces
{
///
/// interface defining the capabilities of a custom event registration
///
public interface IRegisterEvent
{
///
/// collection of custom event registrations
///
/// (Subtype, trigger value, event generator)
///
///
IEnumerable<(string, string, Func)> Events { get; }
}
}