This commit is contained in:
2025-12-11 14:26:07 +01:00
parent a22c15da0d
commit bc1911e26d
3 changed files with 9 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ export * from "./interfaces/team-entry";
export * from "./interfaces/team";
export * from "./interfaces/tournament";
export * from "./interfaces/guest-player-request";
export * from "./interfaces/guest-player-from-other-country-request";
export * from "./interfaces/single-tournament";
export * from "./interfaces/team-championship";
export * from "./interfaces/tag";

View File

@@ -0,0 +1,7 @@
export interface GuestPlayerFromOtherCountryRequest {
id?: number;
name: string;
rankingSingles: number | null;
rankingDoubles: number | null;
rankingMixed: number | null;
}