Fix for Bug 4302, shouldn't have to scroll left to right on z search results
[koha.git] / C4 / SIP / ILS / Transaction / FeePayment.pm
1 package ILS::Transaction::FeePayment;
2
3 use warnings;
4 use strict;
5
6 use vars qw($VERSION @ISA $debug);
7
8 BEGIN {
9         $VERSION = 1.00;
10         @ISA = qw(ILS::Transaction);
11         $debug = 0;
12 }
13
14 use ILS;
15 use ILS::Transaction;
16
17 1;
18 __END__
19