AccessToken.cs 391 B

1234567891011121314151617
  1. 
  2. namespace FspWebApp.Entity.Client
  3. {
  4. public class User
  5. {
  6. public string userName { get; set; }
  7. public string password { get; set; }
  8. }
  9. public class AccessToken
  10. {
  11. public string access_token { get; set; }
  12. public string token_type { get; set; }
  13. public string userName { get; set; }
  14. public string alias { get; set; }
  15. }
  16. }