CSV-Import: Projekte
[kivitendo-erp.git] / SL / DB / Project.pm
1 package SL::DB::Project;
2
3 use strict;
4
5 use SL::DB::MetaSetup::Project;
6
7 use SL::DB::Helper::CustomVariables(
8   module      => 'Project',
9   cvars_alias => 1,
10 );
11
12 __PACKAGE__->meta->make_manager_class;
13 __PACKAGE__->meta->initialize;
14
15 1;
16
17 __END__
18
19 =pod
20
21 =head1 NAME
22
23 SL::DB::Project: Model for the 'project' table
24
25 =head1 SYNOPSIS
26
27 This is a standard Rose::DB::Object based model and can be used as one.
28
29 =head1 FUNCTIONS
30
31 None so far.
32
33 =head1 AUTHOR
34
35 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
36
37 =cut