添加联赛列表接口

This commit is contained in:
xianyi
2026-01-13 17:13:40 +08:00
parent 5fa261591c
commit 91cf23cd11
3 changed files with 41 additions and 0 deletions

View File

@@ -40,6 +40,21 @@ export interface Country {
isActive: boolean;
}
export interface League {
id: number;
key: string;
name: string;
description: string;
sportId: number;
countryKey: string;
countryName: string;
countryLogo: string;
logo: string;
isActive: boolean;
createdAt: string;
updatedAt: string;
}
export interface GoalEvent {
time: string;
home_scorer?: string;