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