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

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

/* JADX INFO: loaded from: classes.dex */
public class CmdSendKeyboardEventWithTime implements SDKParsable {
    public int controlKey;
    public int functionKey;
    public long time;

    private CmdSendKeyboardEventWithTime() {
    }

    public CmdSendKeyboardEventWithTime(int i2) {
        this(0, i2);
    }

    public CmdSendKeyboardEventWithTime(int i2, int i3) {
        this(i2, i3, 0L);
    }

    public CmdSendKeyboardEventWithTime(int i2, int i3, long j2) {
        this();
        this.controlKey = i2;
        this.functionKey = i3;
        this.time = j2;
    }
}
