idempotency/DTOs/PaymentRequest.cs

16 lines
339 B
C#
Raw Normal View History

2023-09-20 11:14:09 +00:00
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; }
}