sozsoft-platform/ui/src/proxy/about/models.ts

23 lines
383 B
TypeScript
Raw Normal View History

2026-02-24 20:44:16 +00:00
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?: number
counterSuffix?: string
counterDuration?: number
}
export interface SectionDto {
key: string
descKey: string
}