Changed nameing scheme for the abstract classes since we're not useing interfaces

ref #11
This commit is contained in:
Nicolai Ort 2020-12-01 17:21:44 +01:00
parent f350007ae5
commit f8e1bf715b
2 changed files with 3 additions and 3 deletions

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).
*/ */