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 path;
    private boolean silence;
    private boolean willNotReboot;

    public CmdUpgradeTouch() {
    }

    public CmdUpgradeTouch(String str, boolean z, boolean z2) {
        this.path = str;
        this.silence = z;
        this.willNotReboot = z2;
    }

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

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

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

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

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

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

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