WeatherInfo.cs 302 B

1234567891011121314
  1. using ProtoBuf;
  2. namespace MediaBrowser.Model.Weather
  3. {
  4. [ProtoContract]
  5. public class WeatherInfo
  6. {
  7. [ProtoMember(1)]
  8. public WeatherStatus CurrentWeather { get; set; }
  9. [ProtoMember(2)]
  10. public WeatherForecast[] Forecasts { get; set; }
  11. }
  12. }