Skip to content

Instantly share code, notes, and snippets.

@erikdietrich
Created March 17, 2013 22:06
Show Gist options
  • Save erikdietrich/5183853 to your computer and use it in GitHub Desktop.
Save erikdietrich/5183853 to your computer and use it in GitHub Desktop.
public class Postcard : MailPiece
{
public override decimal Postage { get { return 0.33M; } }
public override decimal Width { get { return 6; } }
public override decimal Height { get { return 4.25M; } }
public override decimal Thickness { get { return 0.016M; } }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment