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

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

/* JADX INFO: loaded from: classes.dex */
public class CmdNotifyWakeUdpResponse implements SDKParsable {
    public String mac;
    public int type;

    private CmdNotifyWakeUdpResponse() {
    }

    public CmdNotifyWakeUdpResponse(int i, String str) {
        this();
        this.type = i;
        this.mac = str;
    }
}
