ca6a073f4735ae4fe8f9e42a2e74e6e4baafbd93
[JavaForFun] /
1 package de.example.exampletdd.fragment.specific;
2
3 public class WeatherCurrentDataEntrySecond {
4     private final String weatherDescription;
5
6     public WeatherCurrentDataEntrySecond(final String weatherDescription) {
7         this.weatherDescription = weatherDescription;
8     }
9
10     public String getWeatherDescription() {
11         return this.weatherDescription;
12     }
13
14 }