19 lines
608 B
C#
19 lines
608 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace TIAMWebApp.Shared.Application.Models.ClientSide.Payment
|
|
{
|
|
public class SumupPaymentRequest
|
|
{
|
|
[JsonPropertyName("checkout_reference")]
|
|
public string CheckoutReference { get; set; }
|
|
[JsonPropertyName("amount")]
|
|
public string Amount { get; set; }
|
|
[JsonPropertyName("currency")]
|
|
public string Currency { get; set; }
|
|
[JsonPropertyName("pay_to_email")]
|
|
public string PayToEmail { get; set; }
|
|
[JsonPropertyName("description")]
|
|
public string Description { get; set; }
|
|
}
|
|
}
|