namespace Yavsc.Interfaces.Workflow { public interface IEvent { /// /// /topic/(bookquery|estimate) /// /// string Topic { get; } /// /// Should be the user's name /// /// string Sender { get; set ; } string CreateBody(); } }