Files
adventofcode2025/lib/days_enum.dart

12 lines
157 B
Dart
Raw Normal View History

2026-02-20 19:28:38 -06:00
enum AdventOfCodeDays {
day1(title: "Day 1"),
day2(title: "Day 2"),;
const AdventOfCodeDays({
required this.title
});
final String title;
}