web/lib/Enums/CycleType.php
2024-12-05 14:32:46 -06:00

8 lines
130 B
PHP

<?
namespace Enums;
enum CycleType: string{
case Monthly = 'monthly';
case Unlimited = 'unlimited';
case Yearly = 'yearly';
}