Revize 4b847de5
Přidáno uživatelem Alex Konig před téměř 4 roky(ů)
Server/ServerApp/WeatherPredictionParser/IJsonParser.cs | ||
---|---|---|
10 | 10 |
/// <summary> |
11 | 11 |
/// Abstract class that every Json parser should inherit from |
12 | 12 |
/// </summary> |
13 |
abstract class IJsonParser |
|
13 |
public abstract class IJsonParser
|
|
14 | 14 |
{ |
15 | 15 | |
16 | 16 |
/// <summary> Current weather </summary> |
17 | 17 |
WeatherInfo current; |
18 |
public WeatherInfo Current { get => current; } |
|
18 |
public WeatherInfo Current { get => current; set => predictions = value; }
|
|
19 | 19 | |
20 | 20 |
/// <summary> Prediction for today, tommorrow and day after tommorrow </summary> |
21 | 21 |
List<WeatherInfo> predictions; |
Také k dispozici: Unified diff
re #8933 Testing LoginParser