summaryrefslogtreecommitdiff
path: root/lib/DeWeave/BO/Pref.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/DeWeave/BO/Pref.pm')
-rw-r--r--lib/DeWeave/BO/Pref.pm14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/DeWeave/BO/Pref.pm b/lib/DeWeave/BO/Pref.pm
new file mode 100644
index 0000000..5372da2
--- /dev/null
+++ b/lib/DeWeave/BO/Pref.pm
@@ -0,0 +1,14 @@
+package DeWeave::BO::Pref;
+use Moose;
+use namespace::autoclean;
+use MooseX::Types::Moose qw(HashRef);
+
+extends 'DeWeave::EDO';
+
+has value => (
+ isa => HashRef,
+ required => 1,
+ is => 'ro',
+);
+
+1;