Start developping the catalog

This commit is contained in:
2024-03-27 22:07:53 +01:00
parent d5b2ef18ab
commit 3cc8edfc8c
11 changed files with 202 additions and 54 deletions

View File

@ -0,0 +1,10 @@
class CatalogEntry {
CatalogEntry({
required this.name,
required this.description,
required this.logoUrl,
});
final String name;
final String description;
final String logoUrl;
}