using Connected.ServiceModel; namespace Connected.Notifications.Events { public interface IEventService { event ServiceEventHandler? Event; Task Enqueue(IOperationState sender, TService service, string @event, TArgs args); } }