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

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

/* JADX INFO: loaded from: classes.dex */
public class RespStringArrayResult implements SDKParsable {
    private String[] result;

    private RespStringArrayResult() {
    }

    public RespStringArrayResult(String[] strArr) {
        this();
        this.result = strArr;
    }

    public String[] getResult() {
        return this.result;
    }

    public void setResult(String[] strArr) {
        this.result = strArr;
    }
}
