import type { Currency, DateFormat, Language, Nullable, PhoneFormat, WeekDays } from '@/shared'; export interface AccountSettingsDto { language: Language; isBpmnEnable: boolean; phoneFormat: PhoneFormat; allowDuplicates: boolean; timeZone: Nullable; currency: Nullable; numberFormat: Nullable; startOfWeek: Nullable; dateFormat: Nullable; workingDays: Nullable; workingTimeTo: Nullable; workingTimeFrom: Nullable; }