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

NAME

Data::Object::Class

ABSTRACT

Data-Object Class Declaration

SYNOPSIS

  package Person;

  use Data::Object Class;

  extends 'Identity';

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

  1;

DESCRIPTION

Data::Object::Class modifies the consuming package making it a class.