001package com.ericlam.mc.eld.annotations;
002
003import java.lang.annotation.*;
004
005/**
006 * 前綴,用於訊息文件
007 */
008@Inherited
009@Target(ElementType.TYPE)
010@Retention(RetentionPolicy.RUNTIME)
011public @interface Prefix {
012    /**
013     *
014     * @return 前綴路徑
015     */
016    String path();
017}