1
This commit is contained in:
10
lib/data/models/plan_acttion_type.dart
Normal file
10
lib/data/models/plan_acttion_type.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
enum PlanActionType {
|
||||
delete(1), //删除
|
||||
complete(2), //完成
|
||||
edit(3), //编辑
|
||||
completeAll(99); //全部完成
|
||||
|
||||
final int value;
|
||||
|
||||
const PlanActionType(this.value);
|
||||
}
|
||||
Reference in New Issue
Block a user