mirror of
https://github.com/vlang/v.git
synced 2025-09-14 23:12:33 +03:00
6 lines
93 B
V
6 lines
93 B
V
module main
|
|
|
|
struct AuthRequestDto {
|
|
username string @[nonull]
|
|
password string @[nonull]
|
|
}
|