mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 09:47:52 +00:00
13 lines
227 B
Python
13 lines
227 B
Python
"""Model definitions for Actiontec MI424WR (Verizon FIOS) routers."""
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Device:
|
|
"""Actiontec device class."""
|
|
|
|
ip_address: str
|
|
mac_address: str
|
|
timevalid: int
|