Initial commit

This commit is contained in:
2014-05-01 16:41:24 -04:00
commit e566c6ebef
247 changed files with 133367 additions and 0 deletions

9
Remote/DeviceHistory.cs Normal file
View File

@@ -0,0 +1,9 @@
using System.Collections.Generic;
using WeatherService.Values;
namespace WeatherService.Remote
{
public class DeviceHistory : Dictionary<WeatherValueType, List<ReadingBase>>
{
}
}