Files
Paymenter-Version-Tracks/app/Enums/NotificationEnabledStatus.php
Muhammad Tamir b3933b9960 v1.4.0
2025-11-14 10:59:24 +07:00

12 lines
192 B
PHP

<?php
namespace App\Enums;
enum NotificationEnabledStatus: string
{
case Force = 'force';
case ChoiceOn = 'choice_on';
case ChoiceOff = 'choice_off';
case Never = 'never';
}