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