public class Customer | |
{ | |
public string Name { get; set; } | |
public CustomerAddress Address { get;set; } | |
} | |
public class CustomerAddress | |
{ | |
public string Address1 { get; set; } | |
public string Address2 { get; set; } | |
public string City { get; set; } | |
public string Country { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment