Changed nameing scheme for the abstract classes since we're not useing interfaces
ref #11
This commit is contained in:
parent
f350007ae5
commit
f8e1bf715b
@ -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;
|
||||||
}
|
}
|
@ -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).
|
||||||
*/
|
*/
|
Loading…
x
Reference in New Issue
Block a user