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