mirror of
https://github.com/ckaczor/WeatherService.git
synced 2026-01-14 01:25:43 -05:00
10 lines
196 B
C#
10 lines
196 B
C#
using System.Collections.Generic;
|
|
using WeatherService.Values;
|
|
|
|
namespace WeatherService.Remote
|
|
{
|
|
public class DeviceHistory : Dictionary<WeatherValueType, List<ReadingBase>>
|
|
{
|
|
}
|
|
}
|