<?php
namespace App\Enums;
enum TaskVisibility: string
{
case Private = 'private';
case Team = 'team';
case Organization = 'organization';
}