-
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.
feat: move events to
BuildingBlocks
& fix up the issues
- Loading branch information
1 parent
ec138f3
commit 5f80c6f
Showing
6 changed files
with
16 additions
and
15 deletions.
There are no files selected for viewing
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
7 changes: 7 additions & 0 deletions
7
Backend/src/BuildingBlocks/BuildingBlocks.Domain/Notes/Note/Events/NoteCreatedEvent.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,7 @@ | ||
using BuildingBlocks.Domain.Abstractions; | ||
using BuildingBlocks.Domain.ValueObjects.Ids; | ||
|
||
namespace BuildingBlocks.Domain.Notes.Note.Events | ||
{ | ||
public record NoteCreatedEvent(NoteId NoteId) : IDomainEvent; | ||
} |
6 changes: 6 additions & 0 deletions
6
Backend/src/BuildingBlocks/BuildingBlocks.Domain/Notes/Note/Events/NoteUpdatedEvent.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.ValueObjects.Ids; | ||
|
||
namespace BuildingBlocks.Domain.Notes.Note.Events; | ||
|
||
public record NoteUpdatedEvent(NoteId NoteId) : IDomainEvent; |
6 changes: 0 additions & 6 deletions
6
Backend/src/Modules/Notes/Notes.Domain/Events/NoteCreatedEvent.cs
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
Backend/src/Modules/Notes/Notes.Domain/Events/NoteUpdatedEvent.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