Files
mtlsz-frontend-packages/src/interfaces/official.ts
2025-03-22 14:12:21 +01:00

23 lines
487 B
TypeScript

export interface Official {
id?: number;
name: string;
email: string;
phone?: string;
/** @deprecated Use referee and umpire booleans instead */
type?: number;
referee: boolean;
umpire: boolean;
umpireLevel?: string;
refereeLevel?: string;
grade?: string;
birthDate?: string;
didUmpireExamAt?: string;
didRefereeExamAt?: string;
city?: string;
shirtSize?: string;
otherInfo?: string;
tshirtCount?: number;
hasCards?: boolean;
hasCoin?: boolean;
}