WIP Estimate
This commit is contained in:
parent
5604ae3a54
commit
9293ee4ec9
27 changed files with 1308 additions and 76 deletions
14
Yavsc/Interfaces/Workflow/IEvent.cs
Normal file
14
Yavsc/Interfaces/Workflow/IEvent.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
|
||||
public interface IEvent {
|
||||
/// <summary>
|
||||
/// An acceptable topic for this event to be.
|
||||
/// Should return something like the class name
|
||||
/// of this object
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
string Topic { get; set ; }
|
||||
string Sender { get; set ; }
|
||||
|
||||
string Message { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue