summaryrefslogtreecommitdiff
path: root/lib/DeWeave/BO/Bookmark/Query.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/DeWeave/BO/Bookmark/Query.pm')
-rw-r--r--lib/DeWeave/BO/Bookmark/Query.pm20
1 files changed, 20 insertions, 0 deletions
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;