You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
766 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Payment.AllinPay.Models.ResponseModels
{
public class CheckResultResponseInfo<T>
{
/// <summary>
/// 判断请求是否成功
/// </summary>
public bool IsSuccess { get; set; }
/// <summary>
/// 验签是否成功
/// </summary>
public bool CheckSuccess { get; set; } = false;
/// <summary>
/// 显示给用户的消息
/// </summary>
public string ShowUserMsg { get; set; }
/// <summary>
/// 用于记录日志的消息
/// </summary>
public string LogMsg { get; set; }
public T ResultInfo { get; set; }
}
}