mirror of
https://github.com/KaySar12/NextZen-UserService.git
synced 2025-03-20 17:45:36 +07:00
17 lines
434 B
Go
17 lines
434 B
Go
|
/*
|
||
|
* @Author: LinkLeong link@icewhale.com
|
||
|
* @Date: 2022-06-15 11:30:47
|
||
|
* @LastEditors: LinkLeong
|
||
|
* @LastEditTime: 2022-06-23 18:40:40
|
||
|
* @Description:
|
||
|
* @Website: https://www.casaos.io
|
||
|
* Copyright (c) 2022 by icewhale, All Rights Reserved.
|
||
|
*/
|
||
|
package system_model
|
||
|
|
||
|
type VerifyInformation struct {
|
||
|
RefreshToken string `json:"refresh_token"`
|
||
|
AccessToken string `json:"access_token"`
|
||
|
ExpiresAt int64 `json:"expires_at"`
|
||
|
}
|