Skip to content

Instantly share code, notes, and snippets.

@erikdietrich
Created March 18, 2013 00:37
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 erikdietrich/5184293 to your computer and use it in GitHub Desktop.
Save erikdietrich/5184293 to your computer and use it in GitHub Desktop.
public class Postcard : MailPiece
{
public override decimal Postage { get; set; }
public override decimal Width { get; set; }
public override decimal Height { get; set; }
public override decimal Thickness { get; set; }
public Postcard()
{
Postage = 0.33M;
Width = 6.0M;
Height = 4.25M;
Thickness = 0.016M;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment