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/Query.pm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lib/DeWeave/BO/Bookmark/Query.pm (limited to 'lib/DeWeave/BO/Bookmark/Query.pm') diff --git a/lib/DeWeave/BO/Bookmark/Query.pm b/lib/DeWeave/BO/Bookmark/Query.pm new file mode 100644 index 0000000..356384c --- /dev/null +++ b/lib/DeWeave/BO/Bookmark/Query.pm @@ -0,0 +1,20 @@ +package DeWeave::BO::Bookmark::Query; +use Moose; +use namespace::autoclean; +use MooseX::Types::Moose qw(Str); + +extends 'DeWeave::BO::Bookmark::Bookmark'; + +has folderName => ( + isa => Str, + required => 1, + is => 'ro', +); + +has queryId => ( + isa => Str, + required => 0, + is => 'ro', +); + +1; -- cgit v1.2.3