63669: Intermediate commit

This commit is contained in:
Kristof De Langhe
2019-07-11 17:57:54 +02:00
parent 8188da0c75
commit 03887e7c41
4 changed files with 280 additions and 25 deletions

View File

@@ -0,0 +1,19 @@
import { v4 as uuid } from 'uuid';
export class ContentSource {
uuid: string;
enabled = false;
provider: string;
set: string;
format: string;
harvestType: number;
constructor() {
this.uuid = uuid();
}
}