<?php

namespace App\Enums;

final class ServerType
{
    const REGULAR = 'regular';

    const DATABASE = 'database';
}