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.
 
 
 

13 lines
347 B

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; }
}