summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/settings/commands/List.java
blob: ca2c61d2d36f47e5a0d4665b47c83d3904ad65f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.earth2me.essentials.settings.commands;


import com.earth2me.essentials.storage.Comment;
import com.earth2me.essentials.storage.StorageObject;
import lombok.Data;
import lombok.EqualsAndHashCode;


@Data
@EqualsAndHashCode(callSuper = false)
public class List implements StorageObject
{
	@Comment("Sort output of /list command by groups")
	private boolean sortByGroups = true;
}