Skip to content

Commit 54aa701

Browse files
.
1 parent 439d368 commit 54aa701

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

roles/lib/files/FWO.Services/EventMediator/Events/CollectionChangedEvent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ public class CollectionChangedEvent(CollectionChangedEventArgs? eventArgs = defa
66
{
77
public IEventArgs? EventArgs { get; set; } = eventArgs;
88
}
9-
}
9+
}

roles/lib/files/FWO.Services/EventMediator/Interfaces/IEvent.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ public interface IEvent
55
public IEventArgs? EventArgs { get; set; }
66
}
77
}
8+

roles/lib/files/FWO.Services/EventMediator/Interfaces/IEventMediator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ public interface IEventMediator
66
void Publish<TEvent>(string name, TEvent @event) where TEvent : class, IEvent;
77
bool Unsubscribe<TEvent>(string name) where TEvent : class, IEvent;
88
}
9-
}
9+
}

0 commit comments

Comments
 (0)