Files
Liam 50391e5344
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 37s
add name history tracking
2024-06-30 03:36:00 +01:00

26 lines
435 B
Java

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