init commit

This commit is contained in:
2025-03-21 15:17:53 +01:00
commit d483a245f8
22 changed files with 275 additions and 0 deletions

12
src/interfaces/club.ts Normal file
View File

@@ -0,0 +1,12 @@
export interface Club {
id?: number;
name: string;
shortName: string;
players?: Array<any>;
city?: string;
contactName?: string;
email?: string;
address?: string;
phone?: string;
active: boolean;
}