Generator Changes at 11/12/2025 11:18:31 PM +03:30

This commit is contained in:
masoodafar-web
2025-11-12 23:20:15 +03:30
parent 0adb0713f3
commit 4b1b135065
8 changed files with 121 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace CMSMicroservice.Domain.Events;
public class SetPasswordForUserEvent : BaseEvent
{
public SetPasswordForUserEvent(User item)
{
}
public User Item { get; }
}