mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
22 lines
357 B
C#
22 lines
357 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace QRBee.Core.Data
|
|
{
|
|
public record PaymentRequest
|
|
{
|
|
|
|
public ClientToMerchantResponse Request
|
|
{
|
|
get;
|
|
init;
|
|
}
|
|
|
|
public string AsString() => Request.AsString();
|
|
|
|
}
|
|
}
|