10 lines
125 B
Python
10 lines
125 B
Python
|
|
from pydantic import BaseModel
|
|
|
|
|
|
|
|
class ImportFiles(BaseModel):
|
|
"""Data from importing the files"""
|
|
|
|
object_id: str
|