Created
October 4, 2016 16:26
-
-
Save fatagun/67acb96964ed130658e257959e2253ec to your computer and use it in GitHub Desktop.
This file contains 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 Order | |
{ | |
public int Id { set; get; } | |
public string Customer { set; get; } | |
public PaymentDetails PaymentDetails { set; get; } | |
public List<LineItem> LineItems { set; get; } | |
} | |
public class PaymentDetails | |
{ | |
public string Card { set; get; } | |
public int CcNumber { set; get; } | |
public DateTime Expiry { set; get; } | |
} | |
public class LineItem | |
{ | |
public int Id { set; get; } | |
public int Quantity { set; get; } | |
public decimal Price { set; get; } | |
public decimal Total { set; get; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi how are you