<?php

namespace mystic\forum\attributes;

#[\Attribute(\Attribute::TARGET_PROPERTY)]
class DefaultValue {
    public function __construct(
        public readonly string $defaultValue,
    ) {}
}