Generator Changes at 11/17/2025 11:53:47 PM +03:30

This commit is contained in:
masoodafar-web
2025-11-17 23:57:51 +03:30
parent da07a3da38
commit dba8aecc97
50 changed files with 978 additions and 19 deletions
@@ -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; }
}