Files
SoftwareManager/src/utils/data/models.py
T
2026-03-19 20:42:28 +01:00

16 lines
240 B
Python

from dataclasses import dataclass
from typing import List
@dataclass
class Download:
title: str
url: str
magnet_uri: str
path: str
completed: bool
@dataclass
class DownloadList:
count: int
data: List[Download]