WeatherUnits.cs 326 B

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