impl birthday feature
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 36s

This commit is contained in:
Lee
2024-06-26 12:19:11 +01:00
parent e7159ad514
commit 6d593246e8
25 changed files with 589 additions and 47 deletions

View File

@ -9,11 +9,16 @@ import lombok.Setter;
*/
@AllArgsConstructor
@Getter @Setter
public class Profile {
public abstract class Profile {
/**
* The key of the profile.
*/
private String profileKey;
public Profile() {}
/**
* Resets the profile
*/
public abstract void reset();
}