24 lines
441 B
Java
Raw Normal View History

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