IcsFromERPJob
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.

28 lines
786 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ICSSoft.FromERP.Model
  7. {
  8. public class TokenDto
  9. {
  10. public string access_token { get; set; }
  11. public int expires_in { get; set; }
  12. public string token_type { get; set; }
  13. public string scope { get; set; }
  14. }
  15. public class TokenInputDto
  16. {
  17. public string route { get; set; }
  18. public string grant_type { get; set; }
  19. public string client_id { get; set; }
  20. public string client_secret { get; set; }
  21. public long timestamp { get; set; }
  22. public string username { get; set; }
  23. public string sign { get; set; }
  24. public string clientExplorer { get; set; }
  25. }
  26. }