Renamed property, so it fits with the rest of the nameing

ref #11
This commit is contained in:
Nicolai Ort 2020-12-01 18:50:06 +01:00
parent 79eecbb329
commit 084e2d9930
1 changed files with 2 additions and 2 deletions

View File

@ -29,10 +29,10 @@ export class Track {
name: string;
/**
* The track's length in meters.
* The track's length/distance in meters.
*/
@Column()
@IsInt()
@IsPositive()
length: number;
distance: number;
}