Generator Changes at 9/27/2025 10:36:00 AM

This commit is contained in:
generator
2025-09-27 10:36:00 +03:30
parent 15a7933a7a
commit 0e32dc9359
220 changed files with 7313 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace FrontOffice.BFF.Application.UserRoleCQ.Commands.UpdateUserRole;
public record UpdateUserRoleCommand : IRequest<Unit>
{
//شناسه
public long Id { get; init; }
//شناسه نقش
public long RoleId { get; init; }
//شناسه کاربر
public long UserId { get; init; }
}