19 lines
328 B
C#
19 lines
328 B
C#
namespace Hospitality.Backend.DTOs;
|
|
|
|
public record CreateTransactionRequest(
|
|
Guid QrCode,
|
|
Guid ProductId,
|
|
int Amount
|
|
);
|
|
|
|
public record TransactionResponse(
|
|
Guid Id,
|
|
Guid PersonId,
|
|
string PersonName,
|
|
Guid ProductId,
|
|
string ProductName,
|
|
int Amount,
|
|
DateTime Timestamp,
|
|
Guid? StaffId
|
|
);
|