11 lines
148 B
Python
11 lines
148 B
Python
from uuid import UUID
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
|
|
class ImportFiles(BaseModel):
|
|
"""Data from importing the files"""
|
|
|
|
object_id: UUID
|