using MediatR; namespace ExpenseTracker.Application.Accounts.Commands.Update; public record UpdateAccountCommand : IRequest { public string Id { get; set; } public string? Name { get; set; } public string? Description { get; set; } public string UserId { get; set; } }