feat(header): site name

This commit is contained in:
hamster1963
2024-12-01 15:28:43 +08:00
parent 555024bc46
commit ddebfc9c96
3 changed files with 36 additions and 2 deletions

View File

@@ -149,3 +149,13 @@ export interface CycleTransferData {
[key: string]: string;
};
}
export interface SettingResponse {
success: boolean;
data: {
language: string;
site_name: string;
custom_code: string;
};
}