29 lines
500 B
TypeScript
29 lines
500 B
TypeScript
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 = "";
|
|
}
|
|
} |