11 lines
155 B
Python
11 lines
155 B
Python
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class ProcessedContent:
|
|
title: str
|
|
body: str
|
|
processor: str
|