using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace New_College.Model.ViewModels
{
public class WxPayCallbackViewModel
{
///
/// 返回状态码,错误码,SUCCESS为清算机构接收成功,其他错误码为失败。
///
public string code { set; get; } = "SUCCESS";
///
/// 返回信息,如非空,为错误原因。
///
public string message { set; get; } = string.Empty;
}
}