Skip to content

Commit

Permalink
bool Is_day -> int Is_day #23
Browse files Browse the repository at this point in the history
  • Loading branch information
AlienDwarf committed May 3, 2023
1 parent e9cd4a5 commit 356a2a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion OpenMeteo/Hourly.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Text;
using System.Text.Json;
using System.Text.Json.Serialization;

namespace OpenMeteo
{
Expand Down Expand Up @@ -2292,7 +2293,7 @@ public class Hourly
public float?[]? Geopotential_height_30hPa_meteofrance_arpege_world { get; set; }
public float?[]? Uv_index { get; set; }
public float?[]? Uv_index_clear_sky { get; set; }
public bool?[]? Is_day { get; set; }
public int?[]? Is_day { get; set; }
public int?[]? Precipitation_probability { get; set; }
}
}

0 comments on commit 356a2a2

Please sign in to comment.