mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-20 15:35:08 +00:00
18 lines
470 B
Java
18 lines
470 B
Java
![]() |
package com.earth2me.essentials.settings;
|
||
|
|
||
|
import com.earth2me.essentials.storage.Comment;
|
||
|
import com.earth2me.essentials.storage.StorageObject;
|
||
|
import lombok.Data;
|
||
|
import lombok.EqualsAndHashCode;
|
||
|
|
||
|
|
||
|
@Data
|
||
|
@EqualsAndHashCode(callSuper = false)
|
||
|
public class Backup extends StorageObject
|
||
|
{
|
||
|
@Comment("Interval in minutes")
|
||
|
private long interval = 60;
|
||
|
@Comment("Add a command that backups your data, e.g. 'rdiff-backup World1 backups/World1'")
|
||
|
private String command;
|
||
|
}
|