using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Payment.AllinPay.Models.ResponseModels { public class ErrorResponseInfo : BaseResultInfo { /// /// 请求参数 /// public ResponseArgs args { get; set; } } public class ResponseArgs { public List> arg { get; set; } } }