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

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

/* JADX INFO: loaded from: classes.dex */
public class CmdExecShellCommand implements SDKParsable {
    private String mCommand;

    private CmdExecShellCommand() {
    }

    public String getCommand() {
        return this.mCommand;
    }

    public void setCommand(String str) {
        this.mCommand = str;
    }

    public CmdExecShellCommand(String str) {
        this();
        this.mCommand = str;
    }
}
