更新
This commit is contained in:
10
lib/enum/CalendarType.dart
Normal file
10
lib/enum/CalendarType.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
enum CalendarType {
|
||||
day(1, '日'),
|
||||
week(2, '周'),
|
||||
month(3, '月');
|
||||
|
||||
final int code;
|
||||
final String description;
|
||||
|
||||
const CalendarType(this.code, this.description);
|
||||
}
|
||||
Reference in New Issue
Block a user