- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LoginModel.HttpResponse
- {
- public class AuthorizeResponse : BaseResponse
- {
- /// <summary>
- /// 授权网址
- /// </summary>
- public string AuthorizeUrl { get; set; } = "";
- }
- }
|