Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created July 9, 2015 20:44
Show Gist options
  • Save angelovstanton/616400f9d8547e43e7a1 to your computer and use it in GitHub Desktop.
Save angelovstanton/616400f9d8547e43e7a1 to your computer and use it in GitHub Desktop.
public class ClientPurchaseInfo
{
public string FullName { get; set; }
public string Country { get; set; }
public string Address1 { get; set; }
public string City { get; set; }
public string Phone { get; set; }
public string Zip { get; set; }
public string Email { get; set; }
public string State { get; set; }
public string DeliveryType { get; set; }
public GiftWrappingStyles GiftWrapping { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment