using MediatR; namespace ExpenseTracker.Application.Accounts.Queries.Get; public record GetAccountQuery : IRequest { public string Id { get; set; } }