Add basic backend infrastructure
Signed-off-by: Felipe Cardoso <felipe.cardoso@hotmail.it>
This commit is contained in:
11
backend/app/models/sample.py
Normal file
11
backend/app/models/sample.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from datetime import datetime
|
||||
from typing import Optional
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class Sample(BaseModel):
|
||||
filename: str
|
||||
url: str
|
||||
created_at: datetime
|
||||
step: Optional[int] = None
|
||||
Reference in New Issue
Block a user