working updates
This commit is contained in:
29
src/app/game.ts
Normal file
29
src/app/game.ts
Normal 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 = "";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user