5 lines
115 B
Python
5 lines
115 B
Python
class Frame:
|
|
def __init__(self, source: str, text: str):
|
|
self.source = source
|
|
self.text = text
|