Files
SoftwareManager/core/utils/data/models.py
T
2026-01-07 23:07:08 +01:00

15 lines
226 B
Python

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