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