添加国家列表接口

This commit is contained in:
xianyi
2026-01-13 17:12:05 +08:00
parent 98c45c0f35
commit 5fa261591c
3 changed files with 27 additions and 0 deletions

View File

@@ -30,6 +30,16 @@ export interface ApiListResponse<T> {
total: number;
}
export interface Country {
id: number;
code: string;
name: string;
flagIcon: string;
createdAt: string;
updatedAt: string;
isActive: boolean;
}
export interface GoalEvent {
time: string;
home_scorer?: string;