summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/wave/data/device.py
blob: b1d06cbf30d62a85d5e9a94bdaa0fc41f5cb9a77 (plain)
1
2
3
4
5
6
7
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