ButtonDTO.ts 339 Bytes
import { ItemDTO } from './ItemDTO';

export interface  ButtonDTO extends ItemDTO {
  label: string; // button类型,即:按钮1/按钮2
  title: string; // 标题,如:换一换/更多/更多热播电视剧/更多好剧/更多综艺/更多热点/古装剧场/燃剧场
  subTitle: string; // 副标题
  icon?: string; // 小图标
}