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 z) {
        this();
        this.status = z;
    }

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