Skip to content

Instantly share code, notes, and snippets.

@abel-masila
Created January 8, 2018 09:49
Show Gist options
  • Save abel-masila/6ddd84bb13c0ff8a35443be21e50e16c to your computer and use it in GitHub Desktop.
Save abel-masila/6ddd84bb13c0ff8a35443be21e50e16c to your computer and use it in GitHub Desktop.
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