Neue Datenbank Struktur #156

Merged
flixcoo merged 94 commits from feature/88-neue-datenbank-struktur into development 2026-03-04 19:02:03 +00:00
Showing only changes of commit 5094554475 - Show all commits

View File

@@ -13,10 +13,11 @@ class Group {
String? id, String? id,
DateTime? createdAt, DateTime? createdAt,
required this.name, required this.name,
required this.description, String? description,
gelbeinhalb marked this conversation as resolved Outdated

Auch hier Beschreibung optional

Auch hier Beschreibung optional

.

.
required this.members, required this.members,
}) : id = id ?? const Uuid().v4(), }) : id = id ?? const Uuid().v4(),
createdAt = createdAt ?? clock.now(); createdAt = createdAt ?? clock.now(),
description = description ?? '';
@override @override
String toString() { String toString() {