flutter_integrated_whb/lib/Model/list_model.dart

6 lines
135 B
Dart
Raw Normal View History

2025-07-11 11:03:21 +08:00
/// 清单检查记录
class RecordCheckModel {
final String title;
final String time;
RecordCheckModel(this.title, this.time);
}