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

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

class Integer is Field, which {
  has '+value' => (isa => 'Int');
};

1;