100-Days-Of-Code/Visual Studio Code Projects/Day-57/post.py

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