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