2017-12-19 13:53:46 +01:00
|
|
|
export class Claim {
|
|
|
|
id: string;
|
|
|
|
sourceType: string;
|
|
|
|
targetType: string;
|
|
|
|
sourceId: string;
|
|
|
|
targetId: string;
|
|
|
|
date: string;
|
|
|
|
DOI: string;
|
|
|
|
project: Project
|
|
|
|
userMail: string;
|
|
|
|
|
|
|
|
}
|
|
|
|
export class Project{
|
|
|
|
|
|
|
|
}
|
2018-05-03 11:58:30 +02:00
|
|
|
|