mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-19 08:28:10 +02:00
7 lines
148 B
Python
7 lines
148 B
Python
|
|
from pydantic import BaseModel
|
||
|
|
|
||
|
|
|
||
|
|
class OrganizationPreferences(BaseModel):
|
||
|
|
test_phone_number: str | None = None
|
||
|
|
timezone: str | None = None
|