Toloka2WebV2/app/models/request_data.py
CakesTwix af6a581f96
Fix torrent path
Need also update deps
2024-11-19 09:22:56 +02:00

29 lines
604 B
Python

class RequestData:
url: str = ""
season: int = 0
index: int = 0
correction: int = 0
title: str = ""
codename: str = ""
path: str = ""
force: bool = False
def __init__(
self,
url="",
season=0,
index=0,
correction=0,
title="",
codename="",
path="",
force=False,
):
self.url = url
self.season = season
self.index = index
self.correction = correction
self.title = title
self.codename = codename
self.path = path
self.force = force