aboutsummaryrefslogtreecommitdiff
path: root/SensorClientAppW/WeatherData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SensorClientAppW/WeatherData.cs')
-rw-r--r--SensorClientAppW/WeatherData.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/SensorClientAppW/WeatherData.cs b/SensorClientAppW/WeatherData.cs
new file mode 100644
index 0000000..066c580
--- /dev/null
+++ b/SensorClientAppW/WeatherData.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace SensorClientAppW
+{
+ public class WeatherData
+ {
+ public double Humidity { get; set; }
+ public double Pressure { get; set; }
+ }
+}