This commit is contained in:
2026-05-17 20:54:53 +05:00
parent 65a0babeab
commit 27eb4fd606
90 changed files with 12343 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
from __future__ import annotations
from datetime import datetime
from pydantic import BaseModel
class BackupOut(BaseModel):
id: int
device_id: int
filename: str
fmt: str
size: int
created_at: datetime
class Config:
from_attributes = True