using System.Collections.Generic; using System.Threading.Tasks; namespace Mogafa.App.LogEvents { public interface ILogEventParameterIntercept { string Name { get; } int Order { get; } Task> Execute(string eventName, Dictionary parameters); } }