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