summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/wave/data/device.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/tools/wave/data/device.py')
-rw-r--r--testing/web-platform/tests/tools/wave/data/device.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/testing/web-platform/tests/tools/wave/data/device.py b/testing/web-platform/tests/tools/wave/data/device.py
new file mode 100644
index 0000000000..b1d06cbf30
--- /dev/null
+++ b/testing/web-platform/tests/tools/wave/data/device.py
@@ -0,0 +1,8 @@
+# mypy: allow-untyped-defs
+
+class Device:
+ def __init__(self, token, user_agent, name, last_active):
+ self.token = token
+ self.user_agent = user_agent
+ self.name = name
+ self.last_active = last_active