CasaOS/model/system_model/verify_information.go
a624669980@163.com 6343e889e8 switch branch
2022-06-15 17:27:10 +08:00

18 lines
497 B
Go

/*
* @Author: LinkLeong link@icewhale.com
* @Date: 2022-06-15 11:30:47
* @LastEditors: LinkLeong
* @LastEditTime: 2022-06-15 17:25:48
* @FilePath: /CasaOS/model/system_model/verify_information.go
* @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 string `json:"expires_at"`
}