Allow adjustment of Patrons Circle cost

This commit is contained in:
Alex Cabal 2024-12-05 14:32:46 -06:00
parent a4d1e9d724
commit 9a2b095b70
8 changed files with 153 additions and 123 deletions

8
lib/Enums/CycleType.php Normal file
View file

@ -0,0 +1,8 @@
<?
namespace Enums;
enum CycleType: string{
case Monthly = 'monthly';
case Unlimited = 'unlimited';
case Yearly = 'yearly';
}