Files
syncrow-web/lib/pages/device_managment/water_heater/models/schedule_entry.dart
2024-09-22 14:17:52 +03:00

19 lines
436 B
Dart

import 'package:flutter/material.dart';
class ScheduleEntry {
final List<bool> selectedDays;
final TimeOfDay time;
final bool functionOn;
final String category;
ScheduleEntry({
required this.selectedDays,
required this.time,
required this.functionOn,
required this.category,
});
@override
String toString() =>
'ScheduleEntry(selectedDays: $selectedDays, time: $time, functionOn: $functionOn)';
}