15 lines
255 B
Python
15 lines
255 B
Python
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
from .base64data import Base64Data
|
|
|
|
|
|
class ExportFile(BaseModel):
|
|
"""A file to be exported to the client."""
|
|
|
|
contents: Base64Data
|
|
|
|
name: str
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|