mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
19 lines
436 B
Dart
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)';
|
|
} |