import { PlayerResult } from "./PlayerSearchResult";
export interface SearchResults {
    results: PlayerResult[];
    totalresults: number;
}
