11 lines
175 B
Dart
11 lines
175 B
Dart
enum CalendarType {
|
|
day(1, '日'),
|
|
week(2, '周'),
|
|
month(3, '月');
|
|
|
|
final int code;
|
|
final String description;
|
|
|
|
const CalendarType(this.code, this.description);
|
|
}
|