Bat/src/main/java/cc/fascinated/bat/common/Profile.java

17 lines
338 B
Java
Raw Normal View History

2024-06-24 12:56:01 +00:00
package cc.fascinated.bat.common;
import lombok.AllArgsConstructor;
import lombok.Getter;
import org.springframework.data.annotation.Transient;
/**
* @author Fascinated (fascinated7)
*/
@AllArgsConstructor @Getter
public class Profile {
/**
* The key of the profile.
*/
@Transient private final String profileKey;
}