1<?php
2
3namespace FINDOLOGIC\Export\Data;
4
5use FINDOLOGIC\Export\Helpers\UsergroupAwareNumericValue;
6
7class Bonus extends UsergroupAwareNumericValue
8{
9    public function __construct()
10    {
11        parent::__construct('bonuses', 'bonus');
12    }
13}
14