22 lines
383 B
TypeScript
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
|
|
}
|