WeatherUnits.cs 131 B

123456789
  1. 
  2. namespace MediaBrowser.Model.Weather
  3. {
  4. public enum WeatherUnits
  5. {
  6. Fahrenheit,
  7. Celsius
  8. }
  9. }