mirror of
https://github.com/FJurmanovic/wallet-go-api.git
synced 2026-02-06 06:08:16 +00:00
11 lines
134 B
Go
11 lines
134 B
Go
package models
|
|
|
|
type TokenModel struct {
|
|
Token string `json:"token"`
|
|
}
|
|
|
|
type LoginModel struct {
|
|
Email string
|
|
Password string
|
|
}
|