using MediatR; namespace ExpenseTracker.Application.Users.Commands.Update; public class UpdateUserCommandHandler : IRequestHandler { public UpdateUserCommandHandler() { } public async Task Handle(UpdateUserCommand request, CancellationToken cancellationToken) { throw new NotImplementedException(); } }