package com.seewo.sdk.model;

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

/* JADX INFO: loaded from: classes.dex */
public class SDKSystemData implements SDKParsable {
    private int type;
    private String value;

    private SDKSystemData() {
    }

    public SDKSystemData(int i, String str) {
        this();
        this.type = i;
        this.value = str;
    }

    public int getType() {
        return this.type;
    }

    public void setType(int i) {
        this.type = i;
    }

    public String getValue() {
        return this.value;
    }

    public void setValue(String str) {
        this.value = str;
    }
}
