working updates

This commit is contained in:
2018-03-31 17:35:30 -04:00
parent 2a3b0509a8
commit 7ad3c6b93a
12 changed files with 3329 additions and 39 deletions

29
src/app/game.ts Normal file
View File

@@ -0,0 +1,29 @@
export class Game {
Id: number;
Title: string;
Art: string;
Description: string;
Developer: string;
Dumped: number;
Finished: number;
Genre: string;
Own: number;
Played: number;
Publisher: string;
System: string;
Year: string;
constructor() {
this.Title = "";
this.Art = "";
this.Description = "";
this.Developer = "";
this.Dumped = 0;
this.Finished = 0;
this.Genre = "";
this.Own = 0;
this.Played = 0;
this.Publisher = "";
this.System = "";
this.Year = "";
}
}