summaryrefslogtreecommitdiff
path: root/lib/DeWeave/BO/Bookmark/Base.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/DeWeave/BO/Bookmark/Base.pm')
-rw-r--r--lib/DeWeave/BO/Bookmark/Base.pm26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/DeWeave/BO/Bookmark/Base.pm b/lib/DeWeave/BO/Bookmark/Base.pm
new file mode 100644
index 0000000..98ebfc1
--- /dev/null
+++ b/lib/DeWeave/BO/Bookmark/Base.pm
@@ -0,0 +1,26 @@
+package DeWeave::BO::Bookmark::Base;
+use Moose;
+use namespace::autoclean;
+use MooseX::Types::Moose qw(Str);
+
+extends 'DeWeave::EDO';
+
+has type => (
+ isa => Str,
+ required => 1,
+ is => 'ro',
+);
+
+has parentid => (
+ isa => Str,
+ required => 0,
+ is => 'ro',
+);
+
+has parentName => (
+ isa => Str,
+ required => 0,
+ is => 'ro',
+);
+
+1;