Skip to content

Instantly share code, notes, and snippets.

@renatocantarino
Created July 21, 2013 18:19
Show Gist options
  • Save renatocantarino/6049396 to your computer and use it in GitHub Desktop.
Save renatocantarino/6049396 to your computer and use it in GitHub Desktop.
public class AcidentesComCat
{
public int trajeto { get; set; }
public int doenca { get; set; }
public int tipicos { get; set; }
}
public class Quantidade
{
public AcidentesComCat acidentes_com_cat { get; set; }
public int obitos { get; set; }
public int acidentes_sem_cat { get; set; }
}
public class Municipio
{
public int cod_ibge { get; set; }
public string uf { get; set; }
public string nome { get; set; }
}
public class AcidentesDeTrabalho
{
public Quantidade quantidade { get; set; }
public Municipio municipio { get; set; }
}
public class RootObject
{
public List<AcidentesDeTrabalho> acidentes_de_trabalho { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment