mirror of
https://github.com/34892002/edgeKey.git
synced 2026-09-03 06:47:41 +08:00
15 lines
376 B
TypeScript
15 lines
376 B
TypeScript
export interface SiteSettingInput {
|
|
siteName: string;
|
|
siteUrl?: string | null;
|
|
siteSubtitle?: string | null;
|
|
logoIcon?: string | null;
|
|
logo?: string | null;
|
|
notice?: string | null;
|
|
supportContact?: string | null;
|
|
footerText?: string | null;
|
|
orderNotice?: string | null;
|
|
headCode?: string | null;
|
|
footerCode?: string | null;
|
|
timezone?: string | null;
|
|
}
|