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

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

/* JADX INFO: loaded from: classes.dex */
public class CmdUpgradeTouch implements SDKParsable {
    private String b;
    private boolean d;
    private boolean e;

    public CmdUpgradeTouch() {
    }

    public String getPath() {
        return this.b;
    }

    public boolean isSilence() {
        return this.d;
    }

    public boolean isWillNotReboot() {
        return this.e;
    }

    public void setPath(String str) {
        this.b = str;
    }

    public void setSilence(boolean z) {
        this.d = z;
    }

    public void setWillNotReboot(boolean z) {
        this.e = z;
    }

    public CmdUpgradeTouch(String str, boolean z, boolean z2) {
        this.b = str;
        this.d = z;
        this.e = z2;
    }

    public CmdUpgradeTouch(String str) {
        this.b = str;
    }
}
