Files
WeatherService/Values/PressureReading.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
241 B
C#

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