forked from Fascinated/Bat
17 lines
338 B
Java
17 lines
338 B
Java
|
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;
|
||
|
}
|