Add missing challenge data entries
This commit is contained in:
parent
4f95452544
commit
b8e87eb488
|
@ -4,11 +4,13 @@ export default class ChallengeData {
|
||||||
public id: integer;
|
public id: integer;
|
||||||
public value: integer;
|
public value: integer;
|
||||||
public severity: integer;
|
public severity: integer;
|
||||||
|
public rand: integer;
|
||||||
|
|
||||||
constructor(source: Challenge | any) {
|
constructor(source: Challenge | any) {
|
||||||
this.id = source.id;
|
this.id = source.id;
|
||||||
this.value = source.value;
|
this.value = source.value;
|
||||||
this.severity = source.severity;
|
this.severity = source.severity;
|
||||||
|
this.rand = source.rand;
|
||||||
}
|
}
|
||||||
|
|
||||||
toChallenge(): Challenge {
|
toChallenge(): Challenge {
|
||||||
|
|
Loading…
Reference in New Issue