namespace Groceries.Stores; public record StoreListModel(string? Search, ListPageModel Stores) { public record Store(Guid Id, string Retailer, string Name) { public int TotalTransactions { get; init; } } }