<?php

namespace Notes\Security\Attribute;

#[\Attribute(\Attribute::IS_REPEATABLE | \Attribute::TARGET_METHOD | \Attribute::TARGET_CLASS)]
class Security implements \Notes\Attribute {
    public function __construct(
        public null|bool $locked = null,
    ) {}
}