<?php
namespace App\Enums;
enum PacePreference: string
{
case SLOW = 'slow';
case NORMAL = 'normal';
case FAST = 'fast';
}