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
2 changed files with 3 additions and 3 deletions
Showing only changes of commit f8e1bf715b - Show all commits

View File

@ -11,7 +11,7 @@ import {
/** /**
* Defines the participant interface. * Defines the participant interface.
*/ */
export abstract class IParticipant { export abstract class Participant {
/** /**
* Autogenerated unique id (primary key). * Autogenerated unique id (primary key).
*/ */
@ -70,4 +70,4 @@ export abstract class IParticipant {
@IsOptional() @IsOptional()
@IsEmail() @IsEmail()
email?: string; email?: string;
} }

View File

@ -9,7 +9,7 @@ import {
/** /**
* Defines the scan interface. * Defines the scan interface.
*/ */
export abstract class IScan { export abstract class Scan {
/** /**
* Autogenerated unique id (primary key). * Autogenerated unique id (primary key).
*/ */