mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-07-25 12:01:04 +02:00
7 lines
200 B
Python
7 lines
200 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class OrganizationPreferences(BaseModel):
|
|
test_phone_number: str | None = None
|
|
timezone: str | None = None
|
|
external_pbx_integrations_enabled: bool = False
|