Skip to content

Commit

Permalink
🎨 Some code style
Browse files Browse the repository at this point in the history
  • Loading branch information
sergius02 committed Sep 24, 2020
1 parent 0c2aacc commit 13cbde0
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/model/ResponseObject.vala
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
public class Sherlock.ResponseObject {

public string status { get; set; }
public string country { get; set; }
public string countryCode { get; set; }
public string region { get; set; }
public string regionName { get; set; }
public string city { get; set; }
public string zip { get; set; }
public string lat { get; set; }
public string lon { get; set; }
public string timezone { get; set; }
public string isp { get; set; }
public string org { get; set; }
public string as { get; set; }
public string query { get; set; }
public string status;
public string country;
public string countryCode;
public string region;
public string regionName;
public string city;
public string zip;
public string lat;
public string lon;
public string timezone;
public string isp;
public string org;
public string as;
public string query;

public ResponseObject (Json.Object root_object) {
this.status = root_object.get_string_member("status");
Expand Down

0 comments on commit 13cbde0

Please sign in to comment.