Files
briessenchecker/lib/models/checklist.dart
2023-08-05 02:21:33 +02:00

15 lines
311 B
Dart

import 'listitem.dart';
class Checklist {
final int id;
final String ownerId;
String title;
String description;
final DateTime createdTime;
List<Item> items;
Checklist(this.id, this.ownerId, this.title, this.description,
this.createdTime, List<Item>? items)
: items = items ?? [];
}