5 lines
117 B
Python
5 lines
117 B
Python
|
class MessageContent:
|
||
|
def __init__(self, subject, body):
|
||
|
self.subject = subject
|
||
|
self.body = body
|