CaffGeek/MBACNationals

View on GitHub
Website/src/app/services/models/highscores.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Match } from './match';

export class HighScores {
    Name: string;
    Year: string;
    Scores: Match[];
}