mirror of
https://github.com/hanskokx/arcane_framework.git
synced 2026-05-14 10:29:06 +02:00
e6b2442eea
Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
8 lines
110 B
Dart
8 lines
110 B
Dart
enum Feature {
|
|
logging(true),
|
|
;
|
|
|
|
final bool enabledAtStartup;
|
|
const Feature(this.enabledAtStartup);
|
|
}
|