Project

General

Profile

1 55728 k.triantaf
export class Curator {
2
3 55963 argiro.kok
  _id: string = null;
4 55728 k.triantaf
  email: string;
5
  name: string;
6
  affiliations: Affiliation[];
7
  photo: string;
8
  bio: string;
9
}
10
11
export class Affiliation {
12
13
  name: string;
14
  logoUrl: string;
15
  websiteUrl: string;
16
}