mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
21 lines
367 B
C#
21 lines
367 B
C#
namespace QRBee.Core.Data
|
|
{
|
|
public record PaymentResponse
|
|
{
|
|
|
|
public string ServerTransactionId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public PaymentRequest PaymentRequest
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string AsString() => $"{ServerTransactionId}|{PaymentRequest.AsString()}";
|
|
}
|
|
}
|