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

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

/* JADX INFO: loaded from: classes.dex */
public class CmdPowerControlTask implements SDKParsable {
    public int id;
    public SDKPowerControlTask task;

    private CmdPowerControlTask() {
        this.id = -1;
    }

    public CmdPowerControlTask(SDKPowerControlTask sDKPowerControlTask) {
        this();
        this.task = sDKPowerControlTask;
    }

    public CmdPowerControlTask(int i2, SDKPowerControlTask sDKPowerControlTask) {
        this();
        this.id = i2;
        this.task = sDKPowerControlTask;
    }
}
