package com.seewo.sdk.internal.command.touch;

import com.seewo.sdk.internal.model.SDKParsable;

/* JADX INFO: loaded from: classes.dex */
public class CmdSetTouchStatus implements SDKParsable {
    public boolean isShowUi;
    public boolean status;

    private CmdSetTouchStatus() {
    }

    public CmdSetTouchStatus(boolean z2) {
        this();
        this.status = z2;
    }

    public CmdSetTouchStatus(boolean z2, boolean z3) {
        this();
        this.status = z2;
        this.isShowUi = z3;
    }
}
