package Willy::Page; use Moose; has 'content' => ( is => 'rw'); has 'last_modified_timestamp' => ( is => 'rw'); has 'last_modified_by' => ( is => 'rw', isa => 'Willy::User'); has 'content_type' => ( is => 'rw', isa => 'Willy::ContentType'); has 'storage' => ( is => 'rw', isa => 'Willy::Storage'); has 'revisioner' => ( is => 'rw' isa => 'Willy::Revisioner'); 1;