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