11 lines
280 B
TypeScript
Raw Normal View History

2018-05-11 10:46:27 +02:00
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;
2018-05-11 10:46:27 +02:00
}