/**
 * Represents a game played in a Twitch's stream.
 */
export interface Game {
    /**
     * The game Id.
     */
    id: string;
    /**
     * The game name.
     */
    name: string;
}
