mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
17 lines
324 B
C#
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
|
|
}
|
|
} |