Danyi Dávid a909486396 * table filters
* image upload implemented now
* auth token renewal
2018-05-13 22:35:37 +02:00

11 lines
285 B
TypeScript

export class Awardee {
public id: number = null;
public year: number = null;
public name: string = '';
public text: string = '';
public imageLabel: string = '';
public slug: string = '';
public hasProfileImage: boolean = false;
public hasAwardImage: boolean = false;
}