Files
briessenchecker/lib/models/checklist.dart
2023-08-06 15:50:21 +02:00

11 lines
220 B
Dart

class Checklist {
final int id;
final String ownerId;
String title;
String description;
final DateTime createdTime;
Checklist(
this.id, this.ownerId, this.title, this.description, this.createdTime);
}