From fa338dd363f21135dcc77287f23a0aaa4e74159a Mon Sep 17 00:00:00 2001 From: dakkar Date: Sun, 27 Mar 2011 14:48:54 +0100 Subject: bookmarks! and output as a tree --- lib/DeWeave/BO/Bookmark/Livemark.pm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lib/DeWeave/BO/Bookmark/Livemark.pm (limited to 'lib/DeWeave/BO/Bookmark/Livemark.pm') diff --git a/lib/DeWeave/BO/Bookmark/Livemark.pm b/lib/DeWeave/BO/Bookmark/Livemark.pm new file mode 100644 index 0000000..5737763 --- /dev/null +++ b/lib/DeWeave/BO/Bookmark/Livemark.pm @@ -0,0 +1,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; -- cgit v1.2.3