| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace MGModule\DNSManager2\models\customWHMCS\product;
- use MGModule\DNSManager2 as main;
- /**
- * @Table(name=custom_configuration)
- */
- class configuration extends \MGModule\DNSManager2\mgLibs\models\orm{
- /**
- *
- * @Column(id)
- * @var type
- */
- public $id;
-
- /**
- * @Column(varchar=32)
- * @var type
- */
- public $name;
-
- /**
- * @Column(varchar=32)
- * @var type
- */
- public $confa;
- }
|