Bug 22770: DBRev 19.06.00.004
[koha.git] / Koha / Illrequestattribute.pm
1 package Koha::Illrequestattribute;
2
3 # Copyright PTFS Europe 2016
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15 # details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 51 Franklin
19 # Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 use Modern::Perl;
22
23 use Koha::Database;
24
25 use base qw(Koha::Object);
26
27 =head1 NAME
28
29 Koha::Illrequestattribute - Koha Illrequestattribute Object class
30
31 =head1 API
32
33 =head2 Internal methods
34
35 =cut
36
37 =head3 _type
38
39 =cut
40
41 sub _type {
42     return 'Illrequestattribute';
43 }
44
45 =head1 AUTHOR
46
47 Alex Sassmannshausen <alex.sassmannshausen@ptfs-europe.com>
48
49 =cut
50
51 1;