2019-05-27 10:54:58 +02:00
|
|
|
export class Curator {
|
|
|
|
|
2019-06-02 20:52:26 +02:00
|
|
|
_id: string = null;
|
2019-05-27 10:54:58 +02:00
|
|
|
email: string;
|
|
|
|
name: string;
|
|
|
|
affiliations: Affiliation[];
|
|
|
|
photo: string;
|
|
|
|
bio: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Affiliation {
|
2019-06-04 15:30:44 +02:00
|
|
|
communityId: string;
|
|
|
|
id: string;
|
2019-06-13 10:21:36 +02:00
|
|
|
name = '';
|
|
|
|
logo_url = '';
|
|
|
|
website_url = '';
|
2019-05-27 10:54:58 +02:00
|
|
|
}
|