aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/InterfaceModel/Action/DBIC/Result.pm
blob: 405209e1bff1c6d6bb7a72cb78b8668816f7859d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package Reaction::InterfaceModel::Action::DBIC::Result;

use Reaction::InterfaceModel::Action;
use Reaction::Types::DBIC 'Row';
use Reaction::Class;

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



has '+target_model' => (isa => Row);

__PACKAGE__->meta->make_immutable;


1;