The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

package URT::34Baseclass;

use strict;
use warnings;
use URT;

class URT::34Baseclass {
    is_transactional => 0,
    has => [
        parent => { is => 'URT::34Subclass', id_by => 'parent_id' },
        thingy => { is => 'URT::Thingy', id_by => 'thingy_id' }
    ]
};

1;