Files
Lesstime/frontend/services/dto/zimbra.ts
2026-03-19 18:10:35 +01:00

20 lines
403 B
TypeScript

export type ZimbraSettings = {
serverUrl: string | null
username: string | null
calendarPath: string | null
enabled: boolean
hasPassword: boolean
}
export type ZimbraSettingsWrite = {
serverUrl: string | null
username: string | null
calendarPath: string | null
password?: string | null
enabled: boolean
}
export type ZimbraTestResult = {
success: boolean
}