namespace DealerSelection.WebApi.Models; public class RefundResponse { public string status { get; set; } public RefundStatusResponse RefundStatusResponse { get; set; } } public class RefundStatusResponse { public int? refund_status { get; set; } public string reason { get; set; } public string error_code { get; set; } }