Files
jellyfin-jellyfin-1/MediaBrowser.Model/Weather/WeatherUnits.cs

17 lines
324 B
C#
Raw Normal View History

2013-06-24 10:06:25 -04:00
namespace MediaBrowser.Model.Weather
{
/// <summary>
/// Enum WeatherUnits
/// </summary>
public enum WeatherUnits
{
/// <summary>
/// The fahrenheit
/// </summary>
Fahrenheit,
/// <summary>
/// The celsius
/// </summary>
Celsius
}
}