Skip to content

Instantly share code, notes, and snippets.

@fenix2222
Last active April 23, 2016 01:21
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 fenix2222/8744f4a84b301089be2135f38a0e1fe4 to your computer and use it in GitHub Desktop.
Save fenix2222/8744f4a84b301089be2135f38a0e1fe4 to your computer and use it in GitHub Desktop.
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