Skip to content

Instantly share code, notes, and snippets.

@erikdietrich
Created March 17, 2013 22:06
Show Gist options
  • Save erikdietrich/5183849 to your computer and use it in GitHub Desktop.
Save erikdietrich/5183849 to your computer and use it in GitHub Desktop.
public abstract class MailPiece
{
public abstract decimal Postage { get; }
public abstract decimal Width { get; }
public abstract decimal Height { get; }
public abstract decimal Thickness { get; }
public string DestinationZip { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment