The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Data::Object::Role

ABSTRACT

Data-Object Role Declaration

SYNOPSIS

  package Persona;

  use Data::Object Role;

  with 'Relatable';

  has handle => (
    is => 'ro',
    isa => 'Str'
  );

  1;

DESCRIPTION

Data::Object::Role modifies the consuming package making it a role.