mirror of
https://github.com/Zetaphor/browser-recall.git
synced 2025-12-06 10:29:38 +00:00
8 lines
142 B
Python
8 lines
142 B
Python
from dataclasses import dataclass
|
|
from datetime import datetime
|
|
|
|
@dataclass
|
|
class PageInfo:
|
|
url: str
|
|
html: str
|
|
timestamp: datetime |