mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-12 18:27:47 +01:00
16 lines
No EOL
193 B
Python
16 lines
No EOL
193 B
Python
|
|
|
|
class Actor():
|
|
|
|
def __init__(self):
|
|
self.id = "";
|
|
self.name = ""
|
|
|
|
def on(self, power):
|
|
pass
|
|
|
|
def off(self):
|
|
pass
|
|
|
|
def state(self):
|
|
pass |