mirror of
https://github.com/hazemKrimi/crimson-vault.git
synced 2026-05-01 18:20:27 +00:00
7 lines
158 B
Go
7 lines
158 B
Go
package types
|
|
|
|
type LoginRequestBody struct {
|
|
Username string `json:"username" validate:"required"`
|
|
Password string `json:"password" validate:"password"`
|
|
}
|