8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
|
|
import { JudgeTitle } from "./judge-title";
|
||
|
|
|
||
|
|
export class Judge {
|
||
|
|
public id: number;
|
||
|
|
public name: string;
|
||
|
|
public titles: Array<JudgeTitle>;
|
||
|
|
}
|