Response.cs 167 B

12345678
  1. namespace Application.Features.Api.Payment.Confirm;
  2. public sealed record Response(
  3. bool Success,
  4. int PointAmount,
  5. string? Message,
  6. DateTime? PaidAt
  7. );