yavsc/Yavsc.Abstract/Workflow/IEvent.cs

19 lines
415 B
C#
Raw Normal View History

2016-09-17 03:36:34 +02:00
2017-02-22 22:58:02 +01:00
namespace Yavsc.Interfaces.Workflow {
public interface IEvent {
/// <summary>
/// <c>/topic/(bookquery|estimate)</c>
/// </summary>
/// <returns></returns>
2017-06-02 21:34:18 +02:00
string Topic { get; }
2017-02-22 22:58:02 +01:00
/// <summary>
/// Should be the user's name
/// </summary>
/// <returns></returns>
string Sender { get; set ; }
2018-02-03 20:17:29 +01:00
string CreateBody();
2017-02-22 22:58:02 +01:00
}
2016-09-17 03:36:34 +02:00
2017-06-02 21:34:18 +02:00
}