11 lines
280 B
TypeScript
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;
|
|
}
|