Initial commit

This commit is contained in:
2023-07-23 13:34:00 +01:00
commit 967c16b6bf
65 changed files with 2868 additions and 0 deletions

View File

@ -0,0 +1,10 @@
namespace Groceries.Transactions;
public record TransactionListModel(string? Sort, string? Dir, ListPageModel<TransactionListModel.Transaction> Transactions)
{
public record Transaction(Guid Id, DateTime CreatedAt, string Store)
{
public decimal TotalAmount { get; init; }
public int TotalItems { get; init; }
}
}