Generator Changes at 11/17/2025 11:53:47 PM +03:30
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
namespace CMSMicroservice.Domain.Events;
|
||||
public class CreateNewPruductCategoryEvent : BaseEvent
|
||||
{
|
||||
public CreateNewPruductCategoryEvent(PruductCategory item)
|
||||
{
|
||||
}
|
||||
public PruductCategory Item { get; }
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace CMSMicroservice.Domain.Events;
|
||||
public class DeletePruductCategoryEvent : BaseEvent
|
||||
{
|
||||
public DeletePruductCategoryEvent(PruductCategory item)
|
||||
{
|
||||
}
|
||||
public PruductCategory Item { get; }
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace CMSMicroservice.Domain.Events;
|
||||
public class UpdatePruductCategoryEvent : BaseEvent
|
||||
{
|
||||
public UpdatePruductCategoryEvent(PruductCategory item)
|
||||
{
|
||||
}
|
||||
public PruductCategory Item { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user