commands reaoranized

This commit is contained in:
2026-02-05 19:27:43 +01:00
parent a23ba3714b
commit 61997cc277
2 changed files with 2 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
using AipsCore.Application.Abstract.Command;
using AipsCore.Domain.Models.User.ValueObjects;
namespace AipsCore.Application.Models.User.Command;
namespace AipsCore.Application.Models.User.Command.CreateUser;
public record CreateUserCommand(string Username, string Email) : ICommand<UserId>, ICommand;

View File

@@ -1,9 +1,7 @@
using AipsCore.Application.Abstract.Command;
using AipsCore.Domain.Common.ValueObjects;
using AipsCore.Domain.Models.User.External;
using AipsCore.Domain.Models.User.ValueObjects;
namespace AipsCore.Application.Models.User.Command.Handler;
namespace AipsCore.Application.Models.User.Command.CreateUser;
public class CreateUserCommandHandler : ICommandHandler<CreateUserCommand>
{