1234567891011121314151617 |
-
- namespace FspWebApp.Entity.Client
- {
- public class User
- {
- public string userName { get; set; }
- public string password { get; set; }
- }
- public class AccessToken
- {
- public string access_token { get; set; }
- public string token_type { get; set; }
- public string userName { get; set; }
- public string alias { get; set; }
- }
- }
|