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

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

/* JADX INFO: loaded from: classes.dex */
public class CmdSetIIpRemoteStatus implements SDKParsable {
    private SDKIIpRemoteState mState;

    public CmdSetIIpRemoteStatus() {
    }

    public CmdSetIIpRemoteStatus(SDKIIpRemoteState sDKIIpRemoteState) {
        this.mState = sDKIIpRemoteState;
    }

    public SDKIIpRemoteState getState() {
        return this.mState;
    }

    public void setState(SDKIIpRemoteState sDKIIpRemoteState) {
        this.mState = sDKIIpRemoteState;
    }
}
