Start to switch to Moose
[scpubgit/stemmatology.git] / lib / Text / Tradition / Witness.pm
1 #!/usr/bin/env perl
2
3 package Text::Tradition::Witness;
4 use Moose;
5
6 has 'sigil' => (
7                 is => 'rw',
8                 isa => 'Str',
9                 );
10
11 has 'text' => (
12                is => 'rw',
13                isa => 'Array',
14                );
15
16 no Moose;
17 __PACKAGE__->meta->make_immutable;