Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. class PaymentReport
  2. {
  3. public double ExciseDuty { get; set; }
  4. public bool Offense { get; set; }
  5. public double Penalty { get; set; }
  6.  
  7. public double AdministrativeCosts
  8. {
  9. get => 0;
  10. }
  11.  
  12. public double InterestRate
  13. {
  14. get => 0;
  15. }
  16.  
  17. public double Sum
  18. {
  19. get => 0;
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement