Update Network

This commit is contained in:
Stuart Boston
2018-04-03 19:41:10 +01:00
parent 4f89f03b7f
commit 240110848a
@@ -37,6 +37,8 @@ public class Network extends AbstractIdName implements Serializable, Identificat
private String homepage;
@JsonProperty("origin_country")
private String originCountry;
@JsonProperty("logo_path")
private String logoPath;
public String getHeadquarters() {
return headquarters;
@@ -62,4 +64,12 @@ public class Network extends AbstractIdName implements Serializable, Identificat
this.originCountry = originCountry;
}
public String getLogoPath() {
return logoPath;
}
public void setLogoPath(String logoPath) {
this.logoPath = logoPath;
}
}