Skip to content

Instantly share code, notes, and snippets.

@cmatskas
Created June 3, 2020 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmatskas/867beb49eef2bf82c1952b8292a9ebba to your computer and use it in GitHub Desktop.
Save cmatskas/867beb49eef2bf82c1952b8292a9ebba to your computer and use it in GitHub Desktop.
public class Volcano
{
public string VolcanoName { get; set; }
public string Country { get; set; }
public string Region { get; set; }
public Location Location { get; set; }
public Measurements Measurements { get; set; }
public int Elevation { get; set; }
public string Type { get; set; }
public string Status { get; set; }
public string LastKnownEruption { get; set; }
public string id { get; set; }
public string _rid { get; set; }
public string _self { get; set; }
public string _etag { get; set; }
public string _attachments { get; set; }
public int _ts { get; set; }
}
public class Location
{
public string type { get; set; }
public float[] coordinates { get; set; }
}
public class Measurements
{
public string CO2 { get; set; }
public string H2S { get; set; }
public string HCL { get; set; }
public string HF { get; set; }
public string SO2 { get; set; }
public string NaOH { get; set; }
public string SClratio { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment