Created
July 9, 2015 20:44
-
-
Save angelovstanton/616400f9d8547e43e7a1 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 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