summaryrefslogtreecommitdiff
path: root/lib/DeWeave/BO/Bookmark/Separator.pm
blob: 860be6183a764c2d3311573077ab627ed7dc1ac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package DeWeave::BO::Bookmark::Separator; 
use Moose;
use namespace::autoclean;
use MooseX::Types::Moose qw(Str);
 
extends 'DeWeave::BO::Bookmark::Base';
 
has pos => (
    isa => Str,
    required => 1,
    is => 'ro',
);
 
1;