WeatherUnits.cs 324 B

1234567891011121314151617
  1. namespace MediaBrowser.Model.Weather
  2. {
  3. /// <summary>
  4. /// Enum WeatherUnits
  5. /// </summary>
  6. public enum WeatherUnits
  7. {
  8. /// <summary>
  9. /// The fahrenheit
  10. /// </summary>
  11. Fahrenheit,
  12. /// <summary>
  13. /// The celsius
  14. /// </summary>
  15. Celsius
  16. }
  17. }