12 lines
146 B
Go
12 lines
146 B
Go
|
package models
|
||
|
|
||
|
type AllCookies struct {
|
||
|
Username string
|
||
|
Token string
|
||
|
RefreshToken string
|
||
|
}
|
||
|
|
||
|
type ShowCookie struct {
|
||
|
AllCookies
|
||
|
}
|