6 lines
151 B
Python
6 lines
151 B
Python
class AunoComment:
|
|
def __init__(self, author, date, content):
|
|
self.author = author
|
|
self.date = date
|
|
self.content = content
|