NavigationBodyDTO.ets 478 Bytes
import { BottomNavDTO } from './BottomNavDTO';

/**
 * 导航Body数据
 */
export interface NavigationBodyDTO {
  backgroundColor: string; // 迭代二新增-底部导航背景色(信息流频道)
  bottomNavList: BottomNavDTO[];

  // greyBottomNav: GreyBottomNav; // 灰度皮肤
  immersiveBackgroundColor: string; // 迭代二新增-底部导航背景色(沉浸式频道)
  nightBackgroundColor: string; // 迭代三新增-底部导航背景色(夜间模式)
}