Skip to content
GitLab
Explore
Sign in
Changes
Page history
wiki update, score
authored
Jul 30, 2019
by
L4168
Show whitespace changes
Inline
Side-by-side
src/dtos.md
View page @
847a4b48
...
@@ -266,3 +266,16 @@ export class NotificationdDTO {
...
@@ -266,3 +266,16 @@ export class NotificationdDTO {
game
:
string
;
game
:
string
;
}
}
```
```
### ScoreDTO
```
typescript
export
class
ScoreDTO
{
@
IsNumber
()
@
Min
(
1
)
@
Max
(
999
)
score
:
number
;
@
IsUUID
(
"
4
"
)
faction
:
string
;
}
```