first commit
This commit is contained in:
44
frontend/types/setting.ts
Normal file
44
frontend/types/setting.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user