Files
crosspost/dto/post.py
2025-11-06 14:15:50 +00:00

11 lines
299 B
Python

class Post:
def __init__(self, author, title, content, url, timestamp):
self.author = author
self.title = title
self.content = content
self.url = url
self.timestamp = timestamp
# Optionals
self.subreddit = None
self.upvotes = None