summaryrefslogtreecommitdiff
path: root/lib/DeWeave/BO/Bookmark/Folder.pm
blob: 3f77ff6d91b154a02923a87b318ee99a3b0a6905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package DeWeave::BO::Bookmark::Folder; 
use Moose;
use namespace::autoclean;
use MooseX::Types::Moose qw(Str ArrayRef);
 
extends 'DeWeave::BO::Bookmark::Base';
 
has title => (
    isa => Str,
    required => 1,
    is => 'ro',
);
 
has children => (
    isa => ArrayRef[Str],
    required => 1,
    is => 'ro',
);
 
1;