Project

General

Profile

1
export class Curator {
2

    
3
  id: string = null;
4
  email: string;
5
  name: string;
6
  surname: string;
7
  affiliations: Affiliation[];
8
  photo: string;
9
  bio: string;
10
}
11

    
12
export class Affiliation {
13

    
14
  name: string;
15
  logoUrl: string;
16
  websiteUrl: string;
17
}
(1-1/14)