Table of Contents

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

data JToken

The JSON token that contains the feels-like values.

Properties

Day

Daytime feels-like temperature in Celsius.

public double? Day { get; }

Property Value

double?

Evening

Evening feels-like temperature in Celsius.

public double? Evening { get; }

Property Value

double?

Morning

Morning feels-like temperature in Celsius.

public double? Morning { get; }

Property Value

double?

Night

Night feels-like temperature in Celsius.

public double? Night { get; }

Property Value

double?