Created
January 8, 2018 09:49
-
-
Save abel-masila/6ddd84bb13c0ff8a35443be21e50e16c 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 Dependant | |
{ | |
public string id_number { get; set; } | |
public string relationship { get; set; } | |
public string last_name { get; set; } | |
public string first_name { get; set; } | |
public string gender { get; set; } | |
public string birthdate { get; set; } | |
public string photo { get; set; } | |
} | |
public class Attributes | |
{ | |
public string last_name { get; set; } | |
public string first_name { get; set; } | |
public string id_number { get; set; } | |
public string gender { get; set; } | |
public string birthdate { get; set; } | |
public string emp_name { get; set; } | |
public string email { get; set; } | |
public string phone { get; set; } | |
public string branch_no { get; set; } | |
public string emp_no { get; set; } | |
public string photo { get; set; } | |
public string marital_status { get; set; } | |
public List<Dependant> dependants { get; set; } | |
} | |
public class Data | |
{ | |
public string type { get; set; } | |
public Attributes attributes { get; set; } | |
} | |
public class RootObject | |
{ | |
public Data data { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment