configuration.php 462 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace MGModule\DNSManager2\models\customWHMCS\product;
  3. use MGModule\DNSManager2 as main;
  4. /**
  5. * @Table(name=custom_configuration)
  6. */
  7. class configuration extends \MGModule\DNSManager2\mgLibs\models\orm{
  8. /**
  9. *
  10. * @Column(id)
  11. * @var type
  12. */
  13. public $id;
  14. /**
  15. * @Column(varchar=32)
  16. * @var type
  17. */
  18. public $name;
  19. /**
  20. * @Column(varchar=32)
  21. * @var type
  22. */
  23. public $confa;
  24. }