summaryrefslogtreecommitdiff
path: root/src/Types/PresenceState.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Types/PresenceState.php')
-rw-r--r--src/Types/PresenceState.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Types/PresenceState.php b/src/Types/PresenceState.php
new file mode 100644
index 0000000..26eeac6
--- /dev/null
+++ b/src/Types/PresenceState.php
@@ -0,0 +1,10 @@
+<?php
+
+namespace App\Types;
+
+enum PresenceState: string
+{
+ case ONLINE = "online";
+ case OFFLINE = "offline";
+ case UNAVAILABLE = "unavailable";
+}