Clarified comments

ref #90
This commit is contained in:
2021-01-15 18:22:26 +01:00
parent c05834f2a1
commit b89525746d
3 changed files with 5 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ import { TrackScan } from '../../entities/TrackScan';
*/
export class CreateTrackScan {
/**
* The runnerCard associated with the scan.
* The id of the runnerCard associated with the scan.
* This get's saved for documentation and management purposes.
*/
@IsInt()
@@ -20,8 +20,8 @@ export class CreateTrackScan {
card: number;
/**
* The scanning station that created the scan.
* Mainly used for logging and traceing back scans (or errors)
* The scanning station's id that created the scan.
* Mainly used for logging and traceing back scans (or errors).
*/
@IsInt()
@IsPositive()