2018-05-11 18:22:59 +02:00
|
|
|
export class Awardee {
|
|
|
|
|
public id: number = null;
|
|
|
|
|
public year: number = null;
|
|
|
|
|
public name: string = '';
|
|
|
|
|
public text: string = '';
|
|
|
|
|
public imageLabel: string = '';
|
2018-05-13 22:35:37 +02:00
|
|
|
public slug: string = '';
|
|
|
|
|
public hasProfileImage: boolean = false;
|
|
|
|
|
public hasAwardImage: boolean = false;
|
2018-05-11 18:22:59 +02:00
|
|
|
}
|