jellyfin/MediaBrowser.Model/Weather/WeatherUnits.cs
2013-06-24 10:06:25 -04:00

17 lines
324 B
C#

namespace MediaBrowser.Model.Weather
{
/// <summary>
/// Enum WeatherUnits
/// </summary>
public enum WeatherUnits
{
/// <summary>
/// The fahrenheit
/// </summary>
Fahrenheit,
/// <summary>
/// The celsius
/// </summary>
Celsius
}
}