mirror of
https://github.com/34892002/edgeKey.git
synced 2026-09-07 00:38:14 +08:00
12 lines
290 B
TypeScript
12 lines
290 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;
|
|
}
|