jellyfin/MediaBrowser.Model/Weather/WeatherUnits.cs
2013-02-20 20:33:05 -05:00

19 lines
326 B
C#

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