mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-14 12:21:53 +01:00
18 lines
326 B
C#
18 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
|
|
}
|
|
}
|