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

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

/* JADX INFO: loaded from: classes.dex */
public class RespGetBootPCChoice implements SDKParsable {
    private SDKPcBootStrategy mPcBootStrategy;

    private RespGetBootPCChoice() {
    }

    public RespGetBootPCChoice(SDKPcBootStrategy sDKPcBootStrategy) {
        this();
        this.mPcBootStrategy = sDKPcBootStrategy;
    }

    public SDKPcBootStrategy getPcBootStrategy() {
        return this.mPcBootStrategy;
    }

    public void setPcBootStrategy(SDKPcBootStrategy sDKPcBootStrategy) {
        this.mPcBootStrategy = sDKPcBootStrategy;
    }
}
