13 lines
205 B
Python
13 lines
205 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from dataclasses import dataclass
|
||
|
|
|
||
|
|
|
||
|
|
@dataclass
|
||
|
|
class Attachment:
|
||
|
|
url: str
|
||
|
|
media_type: str
|
||
|
|
filename: str = ""
|
||
|
|
size_bytes: int = 0
|
||
|
|
mime_type: str = ""
|