12 lines
461 B
C#
12 lines
461 B
C#
namespace AMREZ.EOP.Contracts.DTOs.Payments.SlipVerification;
|
|
|
|
public sealed class VerifyFromImageResponse
|
|
{
|
|
public required string TransRef { get; init; }
|
|
public required string SendingBank { get; init; }
|
|
public decimal AmountTHB { get; init; }
|
|
public string CurrencyNumeric { get; init; } = "764";
|
|
public string? SenderMsisdn { get; init; }
|
|
public string? BillerId { get; init; }
|
|
public DateTimeOffset TransactedAt { get; init; }
|
|
} |