Project

General

Profile

1 61381 k.triantaf
export class Curator {
2
3
  _id: string;
4
  email: string;
5
  name: string;
6
  affiliations: Affiliation[];
7
  photo: string;
8
  bio: string;
9
}
10
11
export class Affiliation {
12
  communityId: string;
13
  id: string;
14
  name = '';
15
  logo_url = '';
16
  website_url = '';
17
}