6 lines
178 B
Python
6 lines
178 B
Python
class Post:
|
|
def __init__(self, post_id, title, subtitle, body):
|
|
self.id = post_id
|
|
self.title = title
|
|
self.subtitle = subtitle
|
|
self.body = body |