Update src/sdk/src/models/grade.py
This commit is contained in:
parent
75ea385205
commit
f724b1d213
1 changed files with 2 additions and 2 deletions
|
@ -6,8 +6,8 @@ from pydantic import BaseModel
|
||||||
class Grade(BaseModel):
|
class Grade(BaseModel):
|
||||||
value: str
|
value: str
|
||||||
is_point: bool
|
is_point: bool
|
||||||
point_numerator: int
|
point_numerator: int | None
|
||||||
point_denominator: int
|
point_denominator: int | None
|
||||||
weight: float
|
weight: float
|
||||||
name: str
|
name: str
|
||||||
created_at: datetime
|
created_at: datetime
|
||||||
|
|
Loading…
Add table
Reference in a new issue