Files
wifite2/py/Client.py
2015-05-27 09:17:09 -07:00

12 lines
239 B
Python

class Client:
"""
Holds data for a Client (device connected to Access Point/Router)
"""
def __init__(self, bssid, station, power):
self.bssid = bssid
self.station = station
self.power = power