jellyfin/MediaBrowser.Model/Weather/WeatherUnits.cs

19 lines
326 B
C#
Raw Normal View History

2013-02-21 01:33:05 +00:00

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