Files
arcane_framework/lib/src/services/id/id_enums.dart
T
hans 56ebaeb346 Initial (#1)
Initial release
2024-09-11 18:49:35 +02:00

15 lines
343 B
Dart

part of "id_service.dart";
/// Enum representing different types of IDs managed by the `ArcaneIdService`.
///
/// The `ID` enum has two possible values:
/// - `session`: Represents the session ID.
/// - `install`: Represents the install ID.
enum ID {
/// Represents the session ID.
session,
/// Represents the install ID.
install,
}