summaryrefslogtreecommitdiff
path: root/lib/DeWeave/BO/Bookmark/Livemark.pm
blob: 573776312dd80d68f1691fe6ad85940d8fce6dbc (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::Livemark; 
use Moose;
use namespace::autoclean;
use MooseX::Types::Moose qw(Str);
 
extends 'DeWeave::BO::Bookmark::Folder';
 
has siteUri => (
    isa => Str,
    required => 1,
    is => 'ro',
);
 
has feedUri => (
    isa => Str,
    required => 1,
    is => 'ro',
);
 
1;