add scoresaber #1 feed
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 44s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 44s
This commit is contained in:
@ -2,15 +2,22 @@ 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
|
||||
@Getter @Setter
|
||||
public class Profile {
|
||||
/**
|
||||
* The key of the profile.
|
||||
*/
|
||||
@Transient private final String profileKey;
|
||||
private String profileKey;
|
||||
|
||||
public Profile(String profileKey) {
|
||||
this.profileKey = profileKey;
|
||||
}
|
||||
|
||||
public Profile() {}
|
||||
}
|
||||
|
Reference in New Issue
Block a user