You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
529 B
23 lines
529 B
|
|
namespace DealerSelection.Api.Models;
|
|
|
|
public class RefundApiResponse
|
|
{
|
|
public RefundApiResponse(string status, RefundStatusResponse refundStatusResponse)
|
|
{
|
|
Status = status;
|
|
RefundStatusResponse = refundStatusResponse;
|
|
}
|
|
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; }
|
|
}
|
|
|
|
|
|
|
|
|