Skip to content

Instantly share code, notes, and snippets.

@erikdietrich
Created March 17, 2013 22:07
Show Gist options
  • Save erikdietrich/5183858 to your computer and use it in GitHub Desktop.
Save erikdietrich/5183858 to your computer and use it in GitHub Desktop.
public class Letter : MailPiece
{
public override decimal Postage { get { return 0.46M; } }
public override decimal Width { get { return 11.5M; } }
public override decimal Height { get { return 6.125M; } }
public override decimal Thickness { get { return 0.25M; } }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment