File: console_version.py

package info (click to toggle)
python-airtouch5py 0.2.10-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,052 kB
  • sloc: python: 1,748; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 295 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from airtouch5py.packets.datapacket import Data


class ConsoleVersionRequestData(Data):
    pass


class ConsoleVersionData(Data):
    has_update: bool
    version: str

    def __init__(self, has_update: bool, version: str):
        self.has_update = has_update
        self.version = version