forked from Fascinated/Bat
19 lines
348 B
Java
19 lines
348 B
Java
|
package cc.fascinated.bat.features;
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import lombok.RequiredArgsConstructor;
|
||
|
import org.springframework.stereotype.Component;
|
||
|
|
||
|
/**
|
||
|
* @author Fascinated (fascinated7)
|
||
|
*/
|
||
|
@RequiredArgsConstructor
|
||
|
@Getter
|
||
|
@Component
|
||
|
public abstract class Feature {
|
||
|
/**
|
||
|
* The name of the feature
|
||
|
*/
|
||
|
private final String name;
|
||
|
}
|