sozsoft-platform/ui/src/proxy/about/models.ts
Sedat Öztürk 2468e46bfb About
2026-03-13 22:26:04 +03:00

22 lines
383 B
TypeScript

export interface AboutDto {
id: string
tenantId?: string
statsDto: StatDto[]
descriptionsDto: string[]
sectionsDto: SectionDto[]
}
export interface StatDto {
icon: string
value: string
labelKey: string
useCounter?: boolean
counterEnd?: string
counterSuffix?: string
counterDuration?: number
}
export interface SectionDto {
key: string
descKey: string
}