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