using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Hncore.Pass.PaymentCenter.Response.Refund
{
public class RefundCountResponse
{
///
/// 撤销中数量
///
public int CancelingCount { get; set; }
///
/// 撤销成功数量
///
public int SuccessCount { get; set; }
///
/// 撤销失败数量
///
public int FailCount { get; set; }
}
}