package com.hdl.sdk.ttl.HDLDeviceManger.EventBusEvent; /** * Created by JLChen on 2019/7/2 */ public class UpdateRemarkFeedBackEvent { boolean isSuccess; public UpdateRemarkFeedBackEvent(boolean isSuccess) { this.isSuccess = isSuccess; } public boolean isSuccess() { return isSuccess; } }