Files
WeatherService/Values/WindSpeedReading.cs
Chris Kaczor 297a2914ad - Stop storing history in memory
- Add start/end dates to history requests
- Cleanup
2015-03-29 17:57:05 -04:00

13 lines
244 B
C#

using System.Runtime.Serialization;
namespace WeatherService.Values
{
[DataContract]
public class WindSpeedReading : ReadingBase
{
public WindSpeedReading() : base(WeatherValueType.WindSpeed)
{
}
}
}