mirror of
https://github.com/rembo10/headphones.git
synced 2026-05-22 19:37:45 +01:00
11 lines
165 B
Python
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
|