14 lines
290 B
Go
14 lines
290 B
Go
|
package account
|
||
|
|
||
|
type LoginRequest struct {
|
||
|
Email string `json:"email"`
|
||
|
Password string `json:"password"`
|
||
|
}
|
||
|
|
||
|
type RegisterRequest struct {
|
||
|
FirstName string `json:"first_name"`
|
||
|
LastName string `json:"last_name"`
|
||
|
Email string `json:"email"`
|
||
|
Password string `json:"password"`
|
||
|
}
|