blob: fb7a9b785db8194de5f60c0309f250c9e48953cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package at.hannibal2.skyhanni.config.features.misc;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorSlider;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class RemindersConfig {
@Expose
@ConfigOption(name = "Auto Delete Reminders", desc = "Automatically deletes reminders after they have been shown once.")
@ConfigEditorBoolean
public boolean autoDeleteReminders = false;
@Expose
@ConfigOption(
name = "Reminder Interval",
desc = "The interval in minutes in which reminders are shown again, after they have been shown once."
)
@ConfigEditorSlider(minValue = 0f, maxValue = 60f, minStep = 1f)
public float interval = 5f;
}
|