Files
headphones/headphones/types.py
T

11 lines
165 B
Python

from dataclasses import dataclass
@dataclass(frozen=True)
class Result:
title: str
size: int
url: str
provider: str
kind: str
matches: bool