61da32eac03073e6d3d217570081ba042a38bfd7
[srvgit] / Koha / Acquisition / Bookseller / Contact.pm
1 package Koha::Acquisition::Bookseller::Contact;
2
3 use Modern::Perl;
4
5 use base qw( Koha::Object );
6
7 use Carp qw( croak );
8
9 sub _type {
10     return 'Aqcontact';
11 }
12
13 1;