15 lines
270 B
Dart
15 lines
270 B
Dart
/// Ein Enum, das bestimmte Zeitspannen darstellt
|
|
enum TimeFrameEnum {
|
|
/// Für eine tägliche Zeitspanne
|
|
daily,
|
|
|
|
/// Für eine wöchentliche Zeitspanne
|
|
weekly,
|
|
|
|
/// Für eine monatliche Zeitspanne
|
|
monthly,
|
|
|
|
/// Für eine jährliche Zeitspanne
|
|
yearly,
|
|
}
|