mirror of
https://github.com/hanskokx/arcane_framework.git
synced 2026-05-14 02:19:08 +02:00
56ebaeb346
Initial release
15 lines
343 B
Dart
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,
|
|
}
|