summaryrefslogtreecommitdiff
path: root/lib/DeWeave/BO/Bookmark/Query.pm
blob: 356384cb80f0a243b9c6a94f11dc97c372cba7fe (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::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;