Init
This commit is contained in:
7
Prefab.Catalog/Domain/Events/CategoryEvents.cs
Normal file
7
Prefab.Catalog/Domain/Events/CategoryEvents.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
using Prefab.Domain.Common;
|
||||
|
||||
namespace Prefab.Catalog.Domain.Events;
|
||||
|
||||
public sealed record CategoryCreated(Guid CategoryId, string Name) : Event;
|
||||
|
||||
public sealed record CategoryRenamed(Guid CategoryId, string OldName, string NewName) : Event;
|
||||
Reference in New Issue
Block a user