mirror of
https://github.com/ckaczor/WeatherService.git
synced 2026-01-14 01:25:43 -05:00
13 lines
241 B
C#
13 lines
241 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace WeatherService.Values
|
|
{
|
|
[DataContract]
|
|
public class HumidityReading : ReadingBase
|
|
{
|
|
public HumidityReading() : base(WeatherValueType.Humidity)
|
|
{
|
|
}
|
|
}
|
|
}
|