Files
einundzwanzig-app/app/Enums/SelfHostedServiceType.php

12 lines
176 B
PHP

<?php
namespace App\Enums;
enum SelfHostedServiceType: string
{
case Mempool = 'mempool';
case LNbits = 'lnbits';
case Alby = 'alby';
case Other = 'other';
}