yavsc/src/Yavsc.Abstract/Workflow/IEvent.cs
Paul Schneider 40e8e08690 reorg
2026-02-28 21:17:54 +00:00

19 lines
415 B
C#

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