This commit is contained in:
masoodafar-web
2025-11-17 23:49:48 +03:30
parent 51d1f9a6f5
commit 78e461909f
31 changed files with 48296 additions and 7383 deletions
@@ -0,0 +1,11 @@
namespace CMSMicroservice.Domain.Events;
public class CreateNewCategoryEvent : BaseEvent
{
public CreateNewCategoryEvent(Category item)
{
Item = item;
}
public Category Item { get; }
}
@@ -0,0 +1,11 @@
namespace CMSMicroservice.Domain.Events;
public class DeleteCategoryEvent : BaseEvent
{
public DeleteCategoryEvent(Category item)
{
Item = item;
}
public Category Item { get; }
}
@@ -0,0 +1,11 @@
namespace CMSMicroservice.Domain.Events;
public class UpdateCategoryEvent : BaseEvent
{
public UpdateCategoryEvent(Category item)
{
Item = item;
}
public Category Item { get; }
}