Neue Datenbank Struktur #156

Open
gelbeinhalb wants to merge 88 commits from feature/88-neue-datenbank-struktur into development
Showing only changes of commit b9b72cdd50 - Show all commits

16
lib/data/dto/pair.dart Normal file
View File

@@ -0,0 +1,16 @@
import 'package:game_tracker/data/dto/team.dart';
class Pair extends Team {
gelbeinhalb marked this conversation as resolved Outdated

Ich weiß nicht, was wir besprochen hatten, aber macht nicht mehr sinn

class Pair extends Player 

Damit wir in normalen mathces trz eine List<Player> haben könnne

Ich weiß nicht, was wir besprochen hatten, aber macht nicht mehr sinn ```dart class Pair extends Player ``` Damit wir in normalen mathces trz eine `List<Player>` haben könnne

lass da freitag nochmal drüber reden

lass da freitag nochmal drüber reden

Äh ne ich glaub das ist irrellevant, das hatte ich vor 5 Tagen schonmal kommentiert aber das review nicht abgeschickt

Äh ne ich glaub das ist irrellevant, das hatte ich vor 5 Tagen schonmal kommentiert aber das review nicht abgeschickt

ah okay

ah okay
Pair({
super.id,
super.createdAt,
required super.members,
});
@override
String toString() {
return 'Pair{id: $id, members: $members}';
}
}