LabelBean.ets 300 Bytes
import { ItemBean } from '../../ItemBean';
import { LabelDTO } from './LabelDTO';

@Observed
export class LabelBean extends ItemBean {
  titleIconUrl?: string;
  title: string;

  constructor(dto: LabelDTO) {
    super(dto);
    this.titleIconUrl = dto.titleIconUrl;
    this.title = dto.title;
  }
}