13 lines
184 B
Python
13 lines
184 B
Python
import datetime
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class BackupResponseEntity(BaseModel):
|
|
id: int
|
|
timestamp: datetime.datetime
|
|
path: str
|
|
filename: str
|
|
|
|
user_id: int
|