The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package MSWord::ToHTML::Doc;

use Moose;
use namespace::autoclean;
use MSWord::ToHTML::Types::Library qw/:all/;
with 'MSWord::ToHTML::Roles::HasHTML';

has "file" => (
    is       => 'ro',
    isa      => MSDoc,
    required => 1,
);

__PACKAGE__->meta->make_immutable;

1;