ServersGroups.php 587 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace ModulesGarden\Servers\ZimbraEmail\Core\Models\Whmcs;
  3. use Illuminate\Database\Eloquent\model as EloquentModel;
  4. /**
  5. * Description of ServersGroups
  6. *
  7. * @author Mateusz Pawłowski <mateusz.pa@moduelsgarden.com>
  8. *s
  9. * @property int $id
  10. * @property string $name
  11. * @property int $filltype
  12. */
  13. class ServersGroups extends EloquentModel
  14. {
  15. /**
  16. * Table name
  17. *
  18. * @var string
  19. */
  20. protected $table = 'tblservergroups';
  21. /**
  22. * Indicates if the model should be timestamped.
  23. *
  24. * @var bool
  25. */
  26. public $timestamps = false;
  27. }