WIP: Implement frontend

This commit is contained in:
Simon Grimme
2022-07-21 00:29:00 +02:00
parent 6b89690180
commit cc1e02a1ca
109 changed files with 22662 additions and 670 deletions
@@ -0,0 +1,33 @@
import {CompanyDto} from "./CompanyDto";
import {GenreDto} from "./GenreDto";
import {KeywordDto} from "./KeywordDto";
import {PlayerPerspectiveDto} from "./PlayerPerspectiveDto";
import {ThemeDto} from "./ThemeDto";
export class DetectedGameDto {
slug!: string;
title!: string;
summary?: string;
releaseDate?: Date;
userRating?: number;
criticsRating?: number;
totalRating?: number;
category?: string;
offlineCoop?: boolean;
onlineCoop?: boolean;
lanSupport?: boolean;
maxPlayers?: boolean;
coverId!: string;
screenshotIds?: string[];
videoIds?: string[];
companies?: CompanyDto[];
genres?: GenreDto[];
keywords?: KeywordDto[];
themes?: ThemeDto[];
playerPerspectives?: PlayerPerspectiveDto[];
path!: string;
isFolder!: boolean;
confirmedMatch!: boolean;
}