aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Weather/WeatherInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Weather/WeatherInfo.cs')
-rw-r--r--MediaBrowser.Model/Weather/WeatherInfo.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Weather/WeatherInfo.cs b/MediaBrowser.Model/Weather/WeatherInfo.cs
new file mode 100644
index 000000000..7cad4d248
--- /dev/null
+++ b/MediaBrowser.Model/Weather/WeatherInfo.cs
@@ -0,0 +1,14 @@
+using ProtoBuf;
+
+namespace MediaBrowser.Model.Weather
+{
+ [ProtoContract]
+ public class WeatherInfo
+ {
+ [ProtoMember(1)]
+ public WeatherStatus CurrentWeather { get; set; }
+
+ [ProtoMember(2)]
+ public WeatherForecast[] Forecasts { get; set; }
+ }
+}