You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
251 B

3 years ago
  1. <?php
  2. namespace App\Models;
  3. /**
  4. * Store for Tags
  5. *
  6. *
  7. * @author Björn Hase
  8. * @link https://gitea.tentakelfabrik.de/mITSM/feedback GitHub Repository
  9. *
  10. */
  11. class Tag extends ModelAbstract
  12. {
  13. // name of store
  14. protected $name = 'tags';
  15. }