Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created May 13, 2020 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/2a9ffeefd9e7af5dd034ed1f51e448eb to your computer and use it in GitHub Desktop.
Save dcomartin/2a9ffeefd9e7af5dd034ed1f51e448eb to your computer and use it in GitHub Desktop.
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