Fix Redundance Reference
This commit is contained in:
@@ -1,6 +1,13 @@
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace AMREZ.EOP.Contracts.DTOs.Payments.SlipVerification;
|
||||
|
||||
public class VerifyFromImageRequest
|
||||
public sealed class VerifyFromImageRequest
|
||||
{
|
||||
|
||||
[FromForm(Name = "Image")]
|
||||
public IFormFile? Image { get; set; } = default!;
|
||||
|
||||
[FromForm(Name = "OverrideSendingBank")]
|
||||
public string? OverrideSendingBank { get; set; }
|
||||
}
|
||||
@@ -1,6 +1,12 @@
|
||||
namespace AMREZ.EOP.Contracts.DTOs.Payments.SlipVerification;
|
||||
|
||||
public class VerifyFromImageResponse
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user