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