export interface GeneralSettingItem {
  id: number;
  key: string;
  value: string;
  created_at: string;
  updated_at: string;
}

export interface GeneralSettingResponse {
  status: number;
  message: string;
  result: GeneralSettingItem[];
}

export interface GeneralSettings {
  appName: string;
  appLogo: string;
  appIcon: string;
  currencyCode: string;
  currencySymbol: string;
  loginBgImg: string;
  supportEmail: string;
  supportPhone: string;
  copyrightText: string;
}
