MorningEveningPaperDTO.ets 833 Bytes
import { GroupDTO } from './GroupDTO';
import { TopicInfoDTO } from './TopicInfoDTO';

export interface MorningEveningPaperDTO {
  backIconUrl: string;
  backgroundColor: string;
  backgroundImgUrl: string;
  baselineColor: string;
  baselineCopywriting: string;
  baselineShow: number;
  // channelInfo?: any;
  // cornersAdv?: any;
  // cornersAdv2: any[];
  description: string;
  groups: GroupDTO[];
  hasAdInfo: number;
  hasPopUp: number;
  id: number;
  mainLogoImgUrl: string;
  name: string;
  // pageTopParams?: any;
  pageTopType: number;
  pageType: number;
  // popUps: any[];
  pushupLogoImgUrl: string;
  shareCoverUrl: string;
  shareIconUrl: string;
  shareName: string;
  shareSummary: string;
  shareUrl: string;
  statusBarColor: string;
  templateType: number;
  titleColor: string;
  topicInfo: TopicInfoDTO;
}