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;