ButtonBean.ets
558 Bytes
import { ButtonDTO } from './ButtonDTO';
import { ItemBean } from './ItemBean';
@Observed
export class ButtonBean extends ItemBean {
label: string; // button类型,即:按钮1/按钮2
title: string; // 标题,如:换一换/更多/更多热播电视剧/更多好剧/更多综艺/更多热点/古装剧场/燃剧场
subTitle: string; // 副标题
icon?: string; // 小图标
constructor(dto: ButtonDTO) {
super(dto);
this.label = dto.label;
this.title = dto.title;
this.subTitle = dto.subTitle;
this.icon = dto.icon;
}
}