aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/ViewPort/Field/Container.pm
blob: 8f7dd3b77e8b56c05fa58eed41bc1546179cf070 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package Reaction::UI::ViewPort::Field::Container;

use Reaction::Class;

use namespace::clean -except => [ qw(meta) ];
extends 'Reaction::UI::ViewPort';

has label => (is => 'ro', isa => 'Str');
has name  => (is => 'ro', isa => 'Str', required => 1);
has fields => (is => 'ro', isa => 'ArrayRef', required => 1);

__PACKAGE__->meta->make_immutable;

1;

__END__;