mirror of
https://codeberg.org/Freedium-cfd/web.git
synced 2026-03-11 09:04:37 +00:00
10 lines
128 B
Python
10 lines
128 B
Python
|
|
from dataclasses import dataclass
|
||
|
|
|
||
|
|
|
||
|
|
@dataclass
|
||
|
|
class HtmlResult:
|
||
|
|
title: str
|
||
|
|
description: str
|
||
|
|
url: str
|
||
|
|
data: str
|