Last active
August 25, 2018 02:56
-
-
Save rid00z/21fcb55094ac3d97112d0d6a13f241b4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Coord | |
{ | |
public double lon { get; set; } | |
public double lat { get; set; } | |
} | |
public class Weather | |
{ | |
public int id { get; set; } | |
public string main { get; set; } | |
public string description { get; set; } | |
public string icon { get; set; } | |
} | |
public class Main | |
{ | |
public double temp { get; set; } | |
public int pressure { get; set; } | |
public int humidity { get; set; } | |
public double temp_min { get; set; } | |
public double temp_max { get; set; } | |
} | |
public class Wind | |
{ | |
public double speed { get; set; } | |
public int deg { get; set; } | |
} | |
public class Clouds | |
{ | |
public int all { get; set; } | |
} | |
public class Sys | |
{ | |
public int type { get; set; } | |
public int id { get; set; } | |
public double message { get; set; } | |
public string country { get; set; } | |
public int sunrise { get; set; } | |
public int sunset { get; set; } | |
} | |
public class WeatherResult | |
{ | |
public Coord coord { get; set; } | |
public List<Weather> weather { get; set; } | |
public string @base { get; set; } | |
public Main main { get; set; } | |
public int visibility { get; set; } | |
public Wind wind { get; set; } | |
public Clouds clouds { get; set; } | |
public int dt { get; set; } | |
public Sys sys { get; set; } | |
public int id { get; set; } | |
public string name { get; set; } | |
public int cod { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment