-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move reminder created and updated events into building blocks
- Loading branch information
1 parent
d1b6f2f
commit 770f5a5
Showing
5 changed files
with
15 additions
and
13 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
...rc/BuildingBlocks/BuildingBlocks.Domain/Reminders/Reminder/Events/ReminderCreatedEvent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
using BuildingBlocks.Domain.Abstractions; | ||
using BuildingBlocks.Domain.Reminders.Reminder.ValueObjects; | ||
|
||
namespace BuildingBlocks.Domain.Reminders.Reminder.Events; | ||
|
||
public record ReminderCreatedEvent(ReminderId ReminderId) : IDomainEvent; |
6 changes: 6 additions & 0 deletions
6
...rc/BuildingBlocks/BuildingBlocks.Domain/Reminders/Reminder/Events/ReminderUpdatedEvent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
using BuildingBlocks.Domain.Abstractions; | ||
using BuildingBlocks.Domain.Reminders.Reminder.ValueObjects; | ||
|
||
namespace BuildingBlocks.Domain.Reminders.Reminder.Events; | ||
|
||
public record ReminderUpdatedEvent(ReminderId ReminderId) : IDomainEvent; |
5 changes: 0 additions & 5 deletions
5
Backend/src/Modules/Reminders/Reminders.Domain/Events/ReminderCreatedEvent.cs
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
Backend/src/Modules/Reminders/Reminders.Domain/Events/ReminderUpdatedEvent.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters