switch recheck to using an on_completion_step
[scpubgit/DX.git] / lib / DX / Predicate / Rule.pm
1 package DX::Predicate::Rule;
2
3 use DX::Class;
4
5 with 'DX::Role::Predicate';
6
7 has arg_names => (is => 'ro', required => 1);
8
9 has proposition_sequence => (is => 'ro', required => 1);
10
11 1;