ReserveItemBean.ets 272 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 @Observed export class ReserveItemBean { liveId: number relationId: string subscribe: boolean constructor( liveId: number, relationId: string, subscribe: boolean) { this.liveId = liveId; this.relationId = relationId; this.subscribe = subscribe; } }