export interface Player {
    rating: number;
    rd: number;
    lastPlayedMatch?: Date;
}
