10 lines
171 B
Python
10 lines
171 B
Python
|
''' an image, nothing fancy '''
|
||
|
from dataclasses import dataclass
|
||
|
|
||
|
@dataclass
|
||
|
class Image:
|
||
|
''' image block '''
|
||
|
url: str
|
||
|
name: str = ''
|
||
|
type: str = 'Image'
|