Skip to content

Instantly share code, notes, and snippets.

@driscollwebdev
Created May 26, 2011 13:09
Show Gist options
  • Save driscollwebdev/993099 to your computer and use it in GitHub Desktop.
Save driscollwebdev/993099 to your computer and use it in GitHub Desktop.
Interface article sample code 2
interface IProduct
{
string Name { get; set; }
double Price { get; set; }
double UnitPrice { get; set; }
uint SKU { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment