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

12
Values/HumidityReading.cs Normal file
View File

@@ -0,0 +1,12 @@
using System.Runtime.Serialization;
namespace WeatherService.Values
{
[DataContract]
public class HumidityReading : ReadingBase
{
public HumidityReading(WeatherValueType valueType) : base(valueType)
{
}
}
}