Files
mtlsz-frontend-packages/src/interfaces/club.ts
2025-03-21 15:17:53 +01:00

12 lines
237 B
TypeScript

export interface Club {
id?: number;
name: string;
shortName: string;
players?: Array<any>;
city?: string;
contactName?: string;
email?: string;
address?: string;
phone?: string;
active: boolean;
}