fixed .weather min/max temperature
This commit is contained in:
parent
958eca2935
commit
38125509e5
@ -1,4 +1,5 @@
|
|||||||
using System.Collections.Generic;
|
using Newtonsoft.Json;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace NadekoBot.Modules.Searches.Common
|
namespace NadekoBot.Modules.Searches.Common
|
||||||
{
|
{
|
||||||
@ -21,7 +22,9 @@ namespace NadekoBot.Modules.Searches.Common
|
|||||||
public double Temp { get; set; }
|
public double Temp { get; set; }
|
||||||
public float Pressure { get; set; }
|
public float Pressure { get; set; }
|
||||||
public float Humidity { get; set; }
|
public float Humidity { get; set; }
|
||||||
|
[JsonProperty("temp_min")]
|
||||||
public double TempMin { get; set; }
|
public double TempMin { get; set; }
|
||||||
|
[JsonProperty("temp_max")]
|
||||||
public double TempMax { get; set; }
|
public double TempMax { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user