You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
555 B

2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Shentun.WebPeis.PlugIns
  7. {
  8. //public class LoginOutDto: WebApiOutDtoBase
  9. //{
  10. // public LoginOutDataDto Data { get; set; }
  11. //}
  12. public class LoginOutDataDto
  13. {
  14. public string peis_id { get; set; }
  15. public string access_token { get; set; }
  16. public string token_type { get; set; }
  17. public int expires_in { get; set; }
  18. public string refresh_token { get; set; }
  19. }
  20. }