Initial Commit

This commit is contained in:
2025-11-06 14:15:50 +00:00
commit 9f5c6a9647
6 changed files with 117 additions and 0 deletions

8
dto/user.py Normal file
View File

@@ -0,0 +1,8 @@
# Generic User Data Transfer Object for social media platforms
class User:
def __init__(self, username: str, created_utc: int, ):
self.username = username
self.created_utc = created_utc
# Optionals
self.karma = None