Class FeelsLike
- Namespace
- SimpleWeather
- Assembly
- SimpleWeather.dll
Represents the perceived temperature for each part of the day in the daily forecast.
public class FeelsLike
- Inheritance
-
FeelsLike
- Inherited Members
Constructors
FeelsLike(JToken?)
Initializes a new instance of the FeelsLike class from JSON data.
public FeelsLike(JToken? data)
Parameters
dataJTokenThe JSON token that contains the feels-like values.
Properties
Day
Daytime feels-like temperature in Celsius.
public double? Day { get; }
Property Value
Evening
Evening feels-like temperature in Celsius.
public double? Evening { get; }
Property Value
Morning
Morning feels-like temperature in Celsius.
public double? Morning { get; }
Property Value
Night
Night feels-like temperature in Celsius.
public double? Night { get; }