Bug 18591: Allow any number of comments on ILLs
[koha.git] / Koha / Illcomments.pm
1 package Koha::Illcomments;
2
3 # TODO Add POD
4
5 use Modern::Perl;
6 use Koha::Database;
7 use Koha::Illcomment;
8 use base qw(Koha::Objects);
9
10 sub _type {
11     return 'Illcomments';
12 }
13
14 sub object_class {
15     return 'Koha::Illcomment';
16 }
17
18 1;