idempotency/DTOs/PaymentResponse.cs

13 lines
292 B
C#
Raw Permalink Normal View History

2023-09-20 11:14:09 +00:00
using System;
namespace Idempotency.DTOs;
[Serializable]
public class PaymentResponse
{
public string Id { get; set; }
public long Amount { get; set; }
public string Currency { get; set; }
public string CardNumber { get; set; }
public DateTime Created { get; set; }
}