pos-transactions-bff/src/Pos.Transactions.Bff.Contracts/Responses/GetPosTransactionDetailResponse.cs
2026-03-31 16:33:40 -06:00

11 lines
290 B
C#

using Pos.Transactions.Bff.Contracts.Contracts;
namespace Pos.Transactions.Bff.Contracts.Responses;
public sealed record GetPosTransactionDetailResponse(
string ContextId,
string Summary,
decimal OpenBalance,
string Currency,
PosPaymentActivityContract? Transaction);