go-cook-portal/models/auth.go

12 lines
146 B
Go
Raw Normal View History

package models
type AllCookies struct {
Username string
Token string
RefreshToken string
}
type ShowCookie struct {
AllCookies
}