This commit is contained in:
wyf
2025-05-20 14:00:44 +08:00
parent 75ddfca402
commit 0a8cffa4c6
48 changed files with 5221 additions and 1733 deletions

View 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);
}