Blame view
decision/Client.py
219 Bytes
8146dcf82 first commit |
1 2 3 4 5 6 7 8 9 10 |
class Client(object): def __init__(self, id = "", ip_address = "", username="root", password="secretpw"): self.id = id self.ip_address = ip_address self.username = username self.password = password |