ContainerACL.php 125 B

12345678910
  1. <?php
  2. namespace App\Models\Enums;
  3. enum ContainerACL: string
  4. {
  5. case PRIVATE = 'private';
  6. case CUSTOM = 'custom';
  7. }