NotificationObjectType.php 170 B

12345678910
  1. <?php
  2. namespace App\Models\Enums;
  3. enum NotificationObjectType: string
  4. {
  5. case ANNOUNCEMENT = "announcement"; //公告
  6. case ACTION = "action"; //Action 通知
  7. }