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.

29 lines
672 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Payment.AllinPay.Models.ResponseModels
{
public class SendVerificationCodeResponse : BaseResultInfo
{
}
public class SendVerificationCodeQueryResponse : BaseResponse<SendVerificationCodeResponse>
{
public SendVerificationCodeResponse response { get; set; }
protected override SendVerificationCodeResponse GetResultInfo()
{
return response;
}
}
public class SendVerificationCodeResultModel
{
public string bizUserId { get; set; }
public string phone { get; set; }
}
}