| 1 | import 'package:cw_core/enumerable_item.dart'; |
| 2 | |
| 3 | abstract class TransactionPriority extends EnumerableItem<int> with Serializable<int> { |
| 4 | final String? description; |
| 5 | final String? hint; |
| 6 | |
| 7 | const TransactionPriority({required String title, required int raw, this.description, this.hint}) |
| 8 | : super(title: title, raw: raw); |
| 9 | } |