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

use Reaction::Class;
use aliased 'Reaction::UI::ViewPort::Field';

use namespace::clean -except => [ qw(meta) ];
extends Field;


has '+value' => (isa => 'Int');
__PACKAGE__->meta->make_immutable;


1;