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