dj-embe/entity/entry.py

7 lines
259 B
Python
Raw Normal View History

2023-04-23 22:48:31 +00:00
class Entry:
def __init__(self, entry_info) -> None:
self.title: str = entry_info["title"]
self.artist: str = entry_info["artist"]
self.thumbnail: str = entry_info["thumbnail"]
self.requester: str = entry_info["requester"]