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

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

/* JADX INFO: loaded from: classes.dex */
public class CmdPowerOff implements SDKParsable {
    public int timeCount;

    private CmdPowerOff() {
        this.timeCount = -1;
    }

    public CmdPowerOff(int i2) {
        this();
        this.timeCount = i2;
    }
}
