001package com.ericlam.mc.bungee.hnmc.config.yaml;
002
003import java.lang.annotation.*;
004
005/**
006 * 用於 訊息類別 config 時標註 前綴 路徑
007 */
008@Documented
009@Retention(RetentionPolicy.RUNTIME)
010@Target(ElementType.TYPE)
011public @interface Prefix {
012    String path();
013}