2018-05-11 10:46:27 +02:00
|
|
|
import { JudgeTitle } from "./judge-title";
|
|
|
|
|
|
|
|
|
|
export class Judge {
|
2018-05-11 18:22:59 +02:00
|
|
|
public id: number = null;
|
|
|
|
|
public prefix: string = null;
|
|
|
|
|
public name: string = '';
|
|
|
|
|
public titles: Array<JudgeTitle> = [];
|
2018-05-13 22:35:37 +02:00
|
|
|
public slug: string = '';
|
|
|
|
|
public hasProfileImage: boolean = false;
|
2018-05-11 10:46:27 +02:00
|
|
|
}
|