Created
July 21, 2013 18:19
-
-
Save renatocantarino/6049396 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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