14 lines
205 B
Python
14 lines
205 B
Python
import datetime
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class BackupResponseEntity(BaseModel):
|
|
id: int
|
|
timestamp: datetime.datetime
|
|
path: str
|
|
filename: str
|
|
is_by_user: bool
|
|
|
|
user_id: int
|