idempotency/DTOs/PaymentRequest.cs
2023-09-20 12:14:09 +01:00

15 lines
339 B
C#

using System;
namespace Idempotency.DTOs;
[Serializable]
public class PaymentRequest
{
public long Amount { get; set; }
public string Currency { get; set; }
public string CardNumber { get; set; }
public string CVV { get; set; }
public string ExpiryYear { get; set; }
public string ExpiryMonth { get; set; }
}