feature/11-new_classes #15

Merged
niggl merged 55 commits from feature/11-new_classes into dev 2020-12-02 17:48:19 +00:00
3 changed files with 3 additions and 0 deletions
Showing only changes of commit 72f80859a9 - Show all commits

View File

@ -51,6 +51,7 @@ export abstract class Participant {
*/ */
@Column() @Column()
@IsOptional() @IsOptional()
//TODO: Relationship
address?: Location; address?: Location;
/** /**

View File

@ -34,5 +34,6 @@ export abstract class RunnerGroup {
*/ */
@Column() @Column()
@IsOptional() @IsOptional()
//TODO: Relationship
contact?: GroupContact; contact?: GroupContact;
} }

View File

@ -23,6 +23,7 @@ export abstract class Scan {
*/ */
@Column() @Column()
@IsNotEmpty() @IsNotEmpty()
//TODO: Relationship
runner: Runner; runner: Runner;
/** /**