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