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

21 lines
376 B
Java

package cc.fascinated.bat.common;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.Setter;
import org.springframework.data.annotation.Transient;
/**
* @author Fascinated (fascinated7)
*/
@AllArgsConstructor
@Getter @Setter
public class Profile {
/**
* The key of the profile.
*/
private String profileKey;
public Profile() {}
}