package com.ifpdos.daemonserver.router.model;

import android.support.annotation.Keep;
import java.util.List;

/* JADX INFO: loaded from: classes.dex */
@Keep
public class RouterRequest {
    private String method;
    private List<String> params;

    public RouterRequest(String str, List<String> list) {
        this.method = str;
        this.params = list;
    }

    public String getMethod() {
        return this.method;
    }

    public List<String> getParams() {
        return this.params;
    }

    public void setMethod(String str) {
        this.method = str;
    }

    public void setParams(List<String> list) {
        this.params = list;
    }

    public String toString() {
        return "CommandModel{method='" + this.method + "', params=" + this.params + '}';
    }
}
