Files
tuiche/lib/enum/BindType.dart
2025-04-28 15:37:58 +08:00

10 lines
170 B
Dart

enum BindType {
active(1, '主动绑定'),
share(2, '分享绑定');
final int code;
final String description;
const BindType(this.code, this.description);
}