yavsc/Yavsc.Abstract/Workflow/IEvent.cs

20 lines
415 B
C#

8 years ago
namespace Yavsc.Interfaces.Workflow {
public interface IEvent {
/// <summary>
/// <c>/topic/(bookquery|estimate)</c>
/// </summary>
/// <returns></returns>
string Topic { get; }
8 years ago
/// <summary>
/// Should be the user's name
/// </summary>
/// <returns></returns>
string Sender { get; set ; }
string CreateBody();
8 years ago
}
}