2025SELab2-project-Dwengo/frontend/src/data-objects/theme.ts
2025-04-01 16:34:30 +02:00

8 lines
132 B
TypeScript

export interface Theme {
key: string;
title: string;
description: string;
// URL of the image
image: string;
}