AuthorizeResponse.cs 345 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace LoginModel.HttpResponse
  7. {
  8. public class AuthorizeResponse : BaseResponse
  9. {
  10. /// <summary>
  11. /// 授权网址
  12. /// </summary>
  13. public string AuthorizeUrl { get; set; } = "";
  14. }
  15. }