mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
12 lines
246 B
C#
12 lines
246 B
C#
namespace QRBee.Core.Data
|
|
{
|
|
public class PaymentConfirmation
|
|
{
|
|
public string MerchantId { get; set; }
|
|
|
|
public string MerchantTransactionId { get; set; }
|
|
|
|
public string GatewayTransactionId { get; set; }
|
|
}
|
|
}
|