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