10 lines
198 B
C#
10 lines
198 B
C#
namespace Groceries.Data;
|
|
|
|
public class TransactionTotal
|
|
{
|
|
public Guid TransactionId { get; init; }
|
|
public decimal Total { get; init; }
|
|
|
|
public Transaction? Transaction { get; init; }
|
|
}
|