Files
goGin/frontend/types/setting.ts
Beyhan Oğur 2a5b661443 first commit
2026-04-26 21:46:42 +03:00

45 lines
849 B
TypeScript

export interface Setting {
ID: number
CreatedAt: string
UpdatedAt: string
DeletedAt: string | null
title: string
meta_title: string
meta_description: string
phone: string
url: string
email: string
facebook: string
x: string
instagram: string
whatsapp: string
pinterest: string
linkedin: string
slogan: string
address: string
copyright: string
map_embed: string
w_logo: string
b_logo: string
is_active: boolean
w_width: number
w_height: number
w_quality: number
w_format: string
b_width: number
b_height: number
b_quality: number
b_format: string
}
export interface SettingResponse {
items: Setting[]
total: number
page: number
per_page: number
}
export interface SettingDetailResponse {
data: Setting
}