qhd-prevention-flutter/lib/Model/list_model.dart

6 lines
135 B
Dart
Raw Normal View History

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