2023-06-16 18:50:19 +02:00

14 lines
191 B
Python

from dataclasses import asdict, dataclass
@dataclass
class News:
id: str
title: str
date: str
text: str
source_url: str
def dict(self):
return asdict(self)