1<?php 2 3namespace Pterodactyl\Models\Attributes; 4 5#[\Attribute(\Attribute::TARGET_CLASS)] 6readonly class Identifiable 7{ 8 public function __construct(public string $prefix, public string $column = 'uuid') 9 { 10 } 11} 12 13