diff options
Diffstat (limited to 'src/core/infrastructure/ISubscribeTo.cs')
| -rwxr-xr-x | src/core/infrastructure/ISubscribeTo.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/infrastructure/ISubscribeTo.cs b/src/core/infrastructure/ISubscribeTo.cs new file mode 100755 index 0000000..eb94f37 --- /dev/null +++ b/src/core/infrastructure/ISubscribeTo.cs @@ -0,0 +1,7 @@ +namespace core.infrastructure
+{
+ public interface ISubscribeTo<Event>
+ {
+ void Notify(Event subscribedEvent);
+ }
+}
\ No newline at end of file |
