NavigationBodyDTO.ets 901 Bytes
import { BottomNavDTO, BottomNavCompDTO } from './BottomNavDTO';
import { TopNavDTO } from './TopNavDTO';

/**
 * 导航Body数据
 */
export class NavigationBodyDTO {
  backgroundColor: string = ''; // 迭代二新增-底部导航背景色(信息流频道)
  bottomNavList: BottomNavDTO[] = [];
  immersiveBackgroundColor: string = ''; // 迭代二新增-底部导航背景色(沉浸式频道)
  nightBackgroundColor: string = ''; // 迭代三新增-底部导航背景色(夜间模式)
  greyBottomNav?: GreyBottomNavBean; // 灰度皮肤
  md5: string = ''
}

export class GreyBottomNavBean {
  bottomNavList: BottomNavDTO[] = [];
  greyUserList: string[] = [];
}

export class NavigationDetailDTO {
  id: string = ''; // 迭代二新增-底部导航背景色(信息流频道)
  bottomNavCompList: BottomNavCompDTO[] = [];
  topNavChannelList: TopNavDTO[] = [];
  md5: string = ''
}