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

import com.seewo.sdk.internal.model.SDKParsable;
import com.seewo.sdk.model.SDKLocaleInfo;
import java.util.List;

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

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    private List<SDKLocaleInfo> f2788b;

    private RespGetAllSystemLocales() {
    }

    public List<SDKLocaleInfo> getList() {
        return this.f2788b;
    }

    public void setList(List<SDKLocaleInfo> list) {
        this.f2788b = list;
    }

    public RespGetAllSystemLocales(List<SDKLocaleInfo> list) {
        this();
        this.f2788b = list;
    }
}
