24 lines
724 B
C#
24 lines
724 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
}
|
|
}
|