Skip to content

Commit

Permalink
adds fields to crystal well model
Browse files Browse the repository at this point in the history
  • Loading branch information
David Erb committed Apr 24, 2023
1 parent aab1378 commit 4b26e08
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/soakdb3_api/models/crystal_well_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ class CrystalWellModel(BaseModel):
"""

ID: Optional[str] = None
LabVisit: str
CrystalPlate: str
CrystalWell: str
EchoX: int
EchoY: int
LabVisit: Optional[str] = None
CrystalPlate: Optional[str] = None
CrystalWell: Optional[str] = None
EchoX: Optional[int] = None
EchoY: Optional[int] = None
ProteinName: Optional[str] = None
DropVolume: Optional[float] = None

0 comments on commit 4b26e08

Please sign in to comment.