summaryrefslogtreecommitdiff
path: root/lib/Getopt/Dakkar/Role/Value.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Getopt/Dakkar/Role/Value.pm')
-rw-r--r--lib/Getopt/Dakkar/Role/Value.pm7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Getopt/Dakkar/Role/Value.pm b/lib/Getopt/Dakkar/Role/Value.pm
new file mode 100644
index 0000000..ef4d4de
--- /dev/null
+++ b/lib/Getopt/Dakkar/Role/Value.pm
@@ -0,0 +1,7 @@
+package Getopt::Dakkar::Role::Value;
+use Getopt::Dakkar::Style qw(role);
+# VERSION
+# ABSTRACT: a value
+
+has name => ( is => 'ro', isa => Str, required => 1 );
+has value => ( is => 'ro', required => 1 );