summaryrefslogtreecommitdiff
path: root/lib/DeWeave/BO/Bookmark/Microsummary.pm
blob: 51220ac39947830957508157bb852af8dffa2b2c (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::Microsummary; 
use Moose;
use namespace::autoclean;
use MooseX::Types::Moose qw(Str);
 
extends 'DeWeave::BO::Bookmark::Bookmark';
 
has generatorUri => (
    isa => Str,
    required => 1,
    is => 'ro',
);
 
has staticTitle => (
    isa => Str,
    required => 1,
    is => 'ro',
);
 
1;