1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
Files
v/examples/vweb_fullstack/src/auth_dto.v
2023-01-06 04:36:42 +03:00

7 lines
95 B
V

module main
struct AuthRequestDto {
username string [required]
password string [required]
}