added sample tracker on the frontend

This commit is contained in:
GotthardG
2024-12-04 14:45:47 +01:00
parent 1a1a710edf
commit 7b00db3c0d
6 changed files with 200 additions and 2 deletions

View File

@ -137,6 +137,7 @@ class Sample(BaseModel):
puck_id: int
crystalname: Optional[str] = Field(None)
positioninpuck: Optional[int] = Field(None)
events: List[SampleEventCreate] = []
class SampleCreate(BaseModel):