Adding cfg_json and data_json fields to more models

This commit is contained in:
Scott Idem
2024-06-11 13:35:00 -04:00
parent 6691f2a701
commit 19082a7a10
7 changed files with 27 additions and 4 deletions

View File

@@ -108,6 +108,9 @@ class Event_Presenter_Base(BaseModel):
passcode: Optional[str]
cfg_json: Optional[Union[Json, None]] # Store per presenter config options like theme, language, etc
data_json: Optional[Union[Json, None]] # For key value data. Careful with overwriting existing fields!
file_count: Optional[int]
# General catchall for agreement or consent
@@ -312,6 +315,9 @@ class Event_Presenter_Out_Base(BaseModel):
# role: Optional[str]
data_json: Optional[Union[Json, None]] # For key value data. Careful with overwriting existing fields!
cfg_json: Optional[Union[Json, None]] # Store per presenter config options like theme, language, etc
# file_count: Optional[int]
# General catchall for agreement or consent