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

11 lines
280 B
TypeScript

import { JudgeTitle } from "./judge-title";
export class Judge {
public id: number = null;
public prefix: string = null;
public name: string = '';
public titles: Array<JudgeTitle> = [];
public slug: string = '';
public hasProfileImage: boolean = false;
}