Project

General

Profile

1 50169 argiro.kok
export class Claim {
2
  id: string;
3
  sourceType: string;
4
  targetType: string;
5
  sourceId: string;
6
  targetId: string;
7
  date: string;
8
  DOI: string;
9 56714 argiro.kok
  project: Project;
10 50169 argiro.kok
  userMail: string;
11
12
}
13
export class Project{
14
15
}