8 lines
112 B
TypeScript
8 lines
112 B
TypeScript
export interface Game {
|
|
id: number
|
|
title: string
|
|
description: string
|
|
thumbnail: any
|
|
active: boolean
|
|
}
|