Add Tag interface

This commit is contained in:
2025-06-15 18:23:56 +01:00
parent 0daedc28dc
commit d13248277f
2 changed files with 6 additions and 0 deletions

4
src/interfaces/tag.ts Normal file
View File

@@ -0,0 +1,4 @@
export interface Tag {
id?: number;
label: string;
}

View File

@@ -1,6 +1,7 @@
import { Category } from "./category"; import { Category } from "./category";
import { Club } from "./club"; import { Club } from "./club";
import { Official } from "./official"; import { Official } from "./official";
import { Tag } from "./tag";
import { TeamCategory } from "./team-category"; import { TeamCategory } from "./team-category";
export interface Tournament { export interface Tournament {
@@ -24,4 +25,5 @@ export interface Tournament {
drawUrl: string | null; drawUrl: string | null;
notificationsSentAt?: Date | null; notificationsSentAt?: Date | null;
'@type'?: string; '@type'?: string;
tags?: Tag[];
} }