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

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

/* JADX INFO: loaded from: classes.dex */
public class RespShellCommand implements SDKParsable {
    private SDKShellResult b;

    private RespShellCommand() {
    }

    public SDKShellResult getShellResult() {
        return this.b;
    }

    public void setShellResult(SDKShellResult sDKShellResult) {
        this.b = sDKShellResult;
    }

    public RespShellCommand(SDKShellResult sDKShellResult) {
        this();
        this.b = sDKShellResult;
    }
}
