Last active
April 23, 2016 01:21
-
-
Save fenix2222/8744f4a84b301089be2135f38a0e1fe4 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
namespace MySample.Entities | |
{ | |
public class OrderLineItem | |
{ | |
public int Id { get; set; } | |
public decimal Price { get; set; } | |
public int Quantity { get; set; } | |
public virtual Product Product { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment