package com.ifpdos.factorytest.entity;

import com.cvte.tv.api.gson.annotations.SerializedName;

/* JADX INFO: loaded from: classes.dex */
public class EthernetConfigBody {

    @SerializedName("dns1")
    public String dns1;

    @SerializedName("dns2")
    public String dns2;

    @SerializedName("gateway")
    public String gateWay;

    @SerializedName("ip")
    public String ip;

    @SerializedName("mask")
    public String mask;

    public String toString() {
        return "EthernetConfigBody{ip='" + this.ip + "', gateWay='" + this.gateWay + "', mask='" + this.mask + "', dns1='" + this.dns1 + "', dns2='" + this.dns2 + "'}";
    }
}
