wescopeland/retroachievements-js

View on GitHub
src/models/php-responses/api-user-recently-played-game.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface ApiUserRecentlyPlayedGame {
  GameID: string;
  ConsoleID: string;
  ConsoleName: string;
  Title: string;
  ImageIcon: string;
  LastPlayed: string;
  MyVote: string | null;
  NumPossibleAchievements: string;
  PossibleScore: string;
  NumAchieved: string;
  ScoreAchieved: string;
  NumAchievedHardcore: string;
  ScoreAchievedHardcore: string;
}