mirror of
https://github.com/vx3r/wg-gen-web.git
synced 2024-11-04 17:31:17 +00:00
10 lines
201 B
Go
10 lines
201 B
Go
|
package model
|
||
|
|
||
|
type Auth struct {
|
||
|
Oauth2 bool `json:"oauth2"`
|
||
|
ClientId string `json:"clientId"`
|
||
|
Code string `json:"code"`
|
||
|
State string `json:"state"`
|
||
|
CodeUrl string `json:"codeUrl"`
|
||
|
}
|