Revize 99e5517e
Přidáno uživatelem Alex Konig před téměř 4 roky(ů)
Server/ServerApp/Parser/Parsers/IDataParser.cs | ||
---|---|---|
12 | 12 |
/// Abstract class that every DataParser should inherit from |
13 | 13 |
/// </summary> |
14 | 14 |
/// <author>A. Konig</author> |
15 |
abstract class IDataParser |
|
15 |
public abstract class IDataParser
|
|
16 | 16 |
{ |
17 | 17 |
/// <summary> WeatherInfo </summary> |
18 | 18 |
List<WeatherInfo> weatherList; |
19 |
public List<WeatherInfo> WeatherList { get => weatherList; } |
|
19 |
public List<WeatherInfo> WeatherList { get => weatherList; internal set => weatherList = value; }
|
|
20 | 20 |
/// <summary> ActivityInfo repersenting overall activity </summary> |
21 | 21 |
List<ActivityInfo> attendanceList; |
22 |
public List<ActivityInfo> AttendanceList { get => attendanceList; } |
|
22 |
public List<ActivityInfo> AttendanceList { get => attendanceList; internal set => attendanceList = value; }
|
|
23 | 23 |
|
24 | 24 |
/// <summary> |
25 | 25 |
/// Parse data |
Také k dispozici: Unified diff
re #8842 Start testing