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

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

/* JADX INFO: loaded from: classes.dex */
public class CmdSetAppEnable implements SDKParsable {

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    private String f3395b;

    /* JADX INFO: renamed from: g, reason: collision with root package name */
    private boolean f3396g;

    /* JADX INFO: renamed from: r, reason: collision with root package name */
    private int f3397r;

    public CmdSetAppEnable(String str, boolean z2) {
        this.f3395b = str;
        this.f3396g = z2;
    }

    public String getPackageName() {
        return this.f3395b;
    }

    public int getUserId() {
        return this.f3397r;
    }

    public boolean isEnable() {
        return this.f3396g;
    }

    public void setEnable(boolean z2) {
        this.f3396g = z2;
    }

    public void setPackageName(String str) {
        this.f3395b = str;
    }

    public void setUserId(int i2) {
        this.f3397r = i2;
    }

    public CmdSetAppEnable(String str, boolean z2, int i2) {
        this.f3395b = str;
        this.f3396g = z2;
        this.f3397r = i2;
    }
}
