Files
daily-meal-api/app/Enums/WeightGoal.php
T
2026-05-21 12:02:02 +02:00

11 lines
179 B
PHP

<?php
namespace App\Enums;
enum WeightGoal: string
{
case LOSE_WEIGHT = 'lose_weight';
case MAINTAIN_WEIGHT = 'maintain_weight';
case GAIN_WEIGHT = 'gain_weight';
}