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 { public SendVerificationCodeResponse response { get; set; } protected override SendVerificationCodeResponse GetResultInfo() { return response; } } public class SendVerificationCodeResultModel { public string bizUserId { get; set; } public string phone { get; set; } } }