Permission.php 334 B

1234567891011121314151617
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. namespace App\Core\Auth\Classes;
  8. use ORM\Entity as Entity;
  9. class Permission extends Entity{
  10. const _tableName = "auth_permission";
  11. }