Bat/src/main/java/cc/fascinated/bat/common/Profile.java
2024-06-25 15:43:36 +01:00

20 lines
322 B
Java

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